| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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 EmployeeMaster
- {
- /// <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 Name { get; set; }
- }
- }
|