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.
17 lines
491 B
17 lines
491 B
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; }
|
|
public string client { get; set; }
|
|
public string plant { get; set; }
|
|
}
|
|
}
|
|
|