| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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
- {
- /// <summary>
- /// 物料职责表
- /// </summary>
- [Comment("物料职责表")]
- public class EmpWorkDutyMaster
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public int RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string Domain { get; set; }
- /// <summary>
- /// 账号
- /// </summary>
- [Comment("账号")]
- public string Employee { get; set; }
- /// <summary>
- /// 起始编码
- /// </summary>
- [Comment("起始编码")]
- public string ItemNum1 { get; set; }
- /// <summary>
- /// 结束编码
- /// </summary>
- [Comment("结束编码")]
- public string ItemNum2 { get; set; }
- }
- }
|