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 EmployeeMaster { /// /// 主键 /// [Comment("主键")] [Key] public int RecID { get; set; } /// /// 域名 /// [Comment("域名")] public string Domain { get; set; } /// /// 租户ID /// [Comment("租户ID")] public long? tenant_id { get; set; } /// /// 账号 /// [Comment("账号")] public string Employee { get; set; } /// /// 名称 /// [Comment("名称")] public string Name { get; set; } } }