| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using Abp.AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using ShwasherSys.SemiProductStoreInfo;
- using System.ComponentModel.DataAnnotations;
- namespace ShwasherSys.ProductionOrderInfo.Dto
- {
- [AutoMapTo(typeof(SemiOutStore))]
- public class CreateOutStoreApplyDto
- {
- [Required]
- [StringLength(SemiOutStore.ProductionOrderNoMaxLength)]
- public string ProductionOrderNo { get; set; }
- /// <summary>
- /// 半成品库存中记录编号
- /// </summary>
- [StringLength(SemiOutStore.CurrentSemiStoreHouseNoMaxLength)]
- public string CurrentSemiStoreHouseNo { get; set; }
- [Required]
- public int StoreHouseId { get; set; }
- /// <summary>
- /// 1.申请中 2.已出库 3.已取消
- /// </summary>
- [Required]
- [StringLength(SemiOutStore.ApplyStatusMaxLength)]
- public string ApplyStatus { get; set; }
- /// <summary>
- /// 申请出库来源(1.外协加工申请 2.包装申请)
- /// </summary>
- [Required]
- [StringLength(SemiOutStore.ApplyOutStoreSourceMaxLength)]
- public string ApplyOutStoreSource { get; set; }
- /// <summary>
- /// 半成品编号
- /// </summary>
- [StringLength(SemiOutStore.SemiProductNoMaxLength)]
- public string SemiProductNo { get; set; }
- /// <summary>
- /// 申请入库数量
- /// </summary>
- public decimal Quantity { get; set; }
- /// <summary>
- /// 实际出库数量(用于填入实时库存中的数量)
- /// </summary>
- public decimal ActualQuantity { get; set; }
- /// <summary>
- /// 申请出库时间
- /// </summary>
- public DateTime? ApplyOutDate { get; set; }
- [StringLength(SemiOutStore.RemarkMaxLength)]
- public string Remark { get; set; }
- public DateTime? TimeCreated { get; set; }
- public DateTime? TimeLastMod { get; set; }
- [StringLength(SemiOutStore.CreatorUserIdMaxLength)]
- public string CreatorUserId { get; set; }
- [StringLength(SemiOutStore.UserIDLastModMaxLength)]
- public string UserIDLastMod { get; set; }
- }
- }
|