using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.Attributes; namespace WIDESEA_DTO.ERP { public class FeedbackOutorderERP { /// /// 物料编码 /// [PropertyValidate("明细id", NotNullAndEmpty = true)] public string ids { get; set; } /// /// 物料编码 /// [PropertyValidate("物料编码", NotNullAndEmpty = true)] public string materialCode { get; set; } /// /// 发料单号 /// [PropertyValidate("发料单号", NotNullAndEmpty = true)] public string issuanceCode { get; set; } /// /// 批次号 /// [PropertyValidate("批次号", NotNullAndEmpty = true)] public string internalBatchNo { get; set; } /// /// 领料单号 /// [PropertyValidate("领料单号", NotNullAndEmpty = true)] public string pickingCode { get; set; } /// /// 单据数量 /// [PropertyValidate("领料数量", NotNullAndEmpty = true)] public decimal internalBatchNum { get; set; } } }