using CncModels.Dto; namespace CncModels.Dto.Production { /// /// 产量查询(分页) /// public class ProductionQuery : PagedQuery { public System.DateTime? Date { get; set; } public int? WorkshopId { get; set; } public int? MachineId { get; set; } public int? WorkerId { get; set; } public string DataStatus { get; set; } } }