using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Win.Sfs.Shared; using Win.Sfs.Shared.DtoBase; using Win.Sfs.Shared.Filter; namespace Win.Sfs.Shared.DtoBase.SettleAccount { /// /// 查询条件 DTO /// public class StatisticRequestDtoBase : BranchRequestDtoBase { /// /// 年度 /// [Display(Name = "年度")] public string Year { set; get; } /// /// 期间 /// [Display(Name = "期间")] public string Period { set; get; } /// /// 版本 /// [Display(Name = "版本")] public string Version { set; get; } /// /// 客户编码 /// [Display(Name = "客户编码")] public string CustomerCode { get; set; } /// /// 客户名称 /// [Display(Name = "客户名称")] public string CustomerName { get; set; } /// /// 备注 /// [Display(Name = "备注")] public string Remark { get; set; } ///// ///// 是否导出文件 ///// //[Display(Name = "是否导出文件")] //public bool IsExport { get; set; } } }