| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- namespace Admin.NET.Plugin.AiDOP.Dto.S0.Warehouse;
- // ========== 零件包装规格 ==========
- public class AdoS0ItemPackQueryDto
- {
- public long? CompanyRefId { get; set; }
- public long? FactoryRefId { get; set; }
- public string? DomainCode { get; set; }
- public string? Keyword { get; set; }
- public string? PackingType { get; set; }
- public bool? IsActive { get; set; }
- public int Page { get; set; } = 1;
- public int PageSize { get; set; } = 20;
- }
- public class AdoS0ItemPackUpsertDto
- {
- [Range(1, long.MaxValue, ErrorMessage = "公司不能为空")]
- public long CompanyRefId { get; set; }
- [Range(1, long.MaxValue, ErrorMessage = "工厂不能为空")]
- public long FactoryRefId { get; set; }
- public string? DomainCode { get; set; }
- [Required(ErrorMessage = "物料编码不能为空")]
- public string ItemNum { get; set; } = string.Empty;
- public decimal? PackingQty { get; set; }
- public decimal? SmallPackingQty { get; set; }
- public string? PackingType { get; set; }
- public decimal? NetWeight { get; set; }
- public string? WeightUM { get; set; }
- public decimal? Length { get; set; }
- public decimal? Width { get; set; }
- public decimal? High { get; set; }
- public string? IssSpecific { get; set; }
- public string? CustItem { get; set; }
- public string? Remark { get; set; }
- public bool IsActive { get; set; } = true;
- public string? CreateUser { get; set; }
- public string? UpdateUser { get; set; }
- }
- // ========== 物料职责 ==========
- public class AdoS0EmpWorkDutyQueryDto
- {
- public long? CompanyRefId { get; set; }
- public long? FactoryRefId { get; set; }
- public string? DomainCode { get; set; }
- public string? Keyword { get; set; }
- public string? Employee { get; set; }
- public string? Location { get; set; }
- public int Page { get; set; } = 1;
- public int PageSize { get; set; } = 20;
- }
- public class AdoS0EmpWorkDutyUpsertDto
- {
- [Range(1, long.MaxValue, ErrorMessage = "公司不能为空")]
- public long CompanyRefId { get; set; }
- [Range(1, long.MaxValue, ErrorMessage = "工厂不能为空")]
- public long FactoryRefId { get; set; }
- public string? DomainCode { get; set; }
- [Required(ErrorMessage = "员工编码不能为空")]
- public string Employee { get; set; } = string.Empty;
- public string? ItemNum1 { get; set; }
- public string? ItemNum2 { get; set; }
- public string? Location { get; set; }
- public string? ProdLine { get; set; }
- public string? Duty { get; set; }
- public string? EmpType { get; set; }
- public string? Ufld2 { get; set; }
- public string? CreateUser { get; set; }
- public string? UpdateUser { get; set; }
- }
- // ========== 物料状态任务指派 ==========
- public class AdoS0TaskAssignmentQueryDto
- {
- public long? CompanyRefId { get; set; }
- public long? FactoryRefId { get; set; }
- public string? DomainCode { get; set; }
- public string? Keyword { get; set; }
- public string? Rwlx { get; set; }
- public string? Zt { get; set; }
- public string? Sqr { get; set; }
- public int Page { get; set; } = 1;
- public int PageSize { get; set; } = 20;
- }
- public class AdoS0TaskAssignmentUpsertDto
- {
- [Range(1, long.MaxValue, ErrorMessage = "公司不能为空")]
- public long CompanyRefId { get; set; }
- [Range(1, long.MaxValue, ErrorMessage = "工厂不能为空")]
- public long FactoryRefId { get; set; }
- public string? DomainCode { get; set; }
- public DateTime? Tcrq { get; set; }
- public string? Sqr { get; set; }
- public string? Rwlx { get; set; }
- public string? Wlbm { get; set; }
- public decimal? Sl { get; set; }
- public string? Rqpc { get; set; }
- public string? Yskw { get; set; }
- public string? Mdkw { get; set; }
- public DateTime? Xqsj { get; set; }
- public string? Clr { get; set; }
- public string? Bz { get; set; }
- public string? Zt { get; set; }
- public string? CreateUser { get; set; }
- public string? UpdateUser { get; set; }
- }
|