You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
564 B
27 lines
564 B
2 years ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace Win_in.Sfs.Label.Domain.Shared;
|
||
|
|
||
|
public interface IHasPurchaseInfoDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 供应商编号
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
}
|