| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- using System;
- using System.ComponentModel.DataAnnotations;
- using Abp.AutoMapper;
- using ShwasherSys.ProductStoreInfo;
- namespace ShwasherSys.FinshedStoreInfo.Dto
- {
-
- /// <summary>
- /// 成品仓库维护
- /// </summary>
- [AutoMapTo(typeof(FinshedEnterStore))]
- public class FinshedEnterStoreCreateDto
- {
- [Required]
- [StringLength(FinshedEnterStore.ProductionOrderNoMaxLength)]
- public string ProductionOrderNo { get; set; }
- [Required]
- [StringLength(FinshedEnterStore.PackageApplyNoMaxLength)]
- public string PackageApplyNo { get; set; }
- /// <summary>
- /// 半成品编号
- /// </summary>
- [StringLength(FinshedEnterStore.SemiProductNoMaxLength)]
- public string SemiProductNo { get; set; }
- /// <summary>
- /// 半成品编号
- /// </summary>
- [StringLength(FinshedEnterStore.ProductNoMaxLength)]
- public string ProductNo { get; set; }
- [Required]
- public int StoreHouseId { get; set; }
- [StringLength(FinshedEnterStore.StoreLocationNoMaxLength)]
- public string StoreLocationNo { get; set; }
- /// <summary>
- /// 申请状态
- /// </summary>
- [Required]
- public int ApplyStatus { get; set; }
- /// <summary>
- /// 是否已关闭
- /// </summary>
- public bool IsClose { get; set; }
- /// <summary>
- /// 申请来源(1.车间包装 )
- /// </summary>
- [Required]
- public int ApplySource { get; set; }
- /// <summary>
- /// 申请入库数量(千斤)
- /// </summary>
- public decimal Quantity { get; set; }
- /// <summary>
- /// 包装规格
- /// </summary>
- public decimal PackageSpecification { get; set; }
- /// <summary>
- /// 申请入库包数
- /// </summary>
- public decimal PackageCount { get; set; }
- /// <summary>
- /// 实际入库包数
- /// </summary>
- public decimal ActualPackageCount { get; set; }
- /// <summary>
- /// 审核人员
- /// </summary>
- public string AuditUser { get; set; }
- /// <summary>
- /// 审核时间
- /// </summary>
- public DateTime? AuditDate { get; set; }
- /// <summary>
- /// 申请入库时间
- /// </summary>
- public DateTime? ApplyEnterDate { get; set; }
- [StringLength(FinshedEnterStore.RemarkMaxLength)]
- public string Remark { get; set; }
- public DateTime? TimeCreated { get; set; }
- public DateTime? TimeLastMod { get; set; }
- [StringLength(FinshedEnterStore.CreatorUserIdMaxLength)]
- public string CreatorUserId { get; set; }
- [StringLength(FinshedEnterStore.UserIDLastModMaxLength)]
- public string UserIDLastMod { get; set; }
- }
- }
|