namespace ContractService.LegalCase.Dto { /// <summary> /// 懒加载查询 /// </summary> public class LazyQueryDto { public string No { get; set; } public int Skip { get; set; } public int Take { get; set; } public string Keyword { get; set; } } }