ComplianceServer/oldcode/ZXDService/Domain/Assign.cs

19 lines
549 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ZXDService.Domain
{
[Table("assign")]
public class Assign
{
[Key]
public string uniquekey { get; set; }
public int ch { get; set; }
public int eid { get; set; }
public int salegroupid { get; set; }
public int allocations { get; set; }
public int todayallocations { get; set; }
public int quantity { get; set; }
public int tgquantity { get; set; }
}
}