namespace JNPF.VisualData.Entitys.Dto.Screen; /// /// 大屏列表查询输入. /// public class ScreenListQueryInput { /// /// 大屏类型. /// public int? category { get; set; } = 1; /// /// 当前页. /// public int current { get; set; } /// /// 每页的数量. /// public int size { get; set; } }