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