using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.StructuredDB.WMS { /// /// 物料职责表 /// [Comment("物料职责表")] public class EmpWorkDutyMaster { /// /// 主键 /// [Comment("主键")] [Key] public int RecID { get; set; } /// /// 域名 /// [Comment("域名")] public string Domain { get; set; } /// /// 账号 /// [Comment("账号")] public string Employee { get; set; } /// /// 起始编码 /// [Comment("起始编码")] public string ItemNum1 { get; set; } /// /// 结束编码 /// [Comment("结束编码")] public string ItemNum2 { get; set; } } }