using System.ComponentModel.DataAnnotations; namespace Win_in.Sfs.Label.Domain.Shared; public interface IHasPurchaseInfoDto { /// /// 供应商编号 /// [Display(Name = "供应商编号")] public string SupplierCode { get; set; } public string PoNumber { get; set; } public string RpNumber { get; set; } public string AsnNumber { get; set; } } public interface IHasProductionInfoDto { public string ProdLine { get; set; } public string Team { get; set; } public string Shift { get; set; } }