using System.Collections.Generic; namespace Tiger.Model { public class ApiInput { /// ///数据库授权查询选项 /// public AuthOption AuthOption { get; set; } } public class BsPageInput : ApiInput { public int pageIndex { get; set; } public int pageSize { get; set; } public int total { get; set; } public string Code { get; set; } } public class BsPageOutput { public List data { get; set; } public int total { get; set; } } }