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.

22 lines
608 B

1 year ago
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CK.SCP.Models.UniApiEntity
{
public partial class PURReplenishQties
{
[Key]
public int di_batchno { get; set; }
public string PURDOCNO { get; set; }
public string purDocLineNO { get; set; }
public decimal replenishQty { get; set; }
/// <summary>
/// asn单号
/// </summary>
public string PurAsnBillNum { get; set; }
1 year ago
public string client { get; set; }
public string plant { get; set; }
}
}