using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WX.CRM.Model.Entity { [Table("UPDEV.BAS_EMPLOYEE_DEPARTMENT")] public class BAS_EMPLOYEE_DEPARTMENT { [Key] /// /// 主键ID /// public decimal ID { get; set; } /// /// 用户ID /// public decimal EMPLOYEE_ID { get; set; } /// /// 部门ID /// public decimal DEPARTMENT_ID { get; set; } /// /// 删除标志 /// public decimal IS_DELETED { get; set; } /// /// 创建时间 /// public DateTime? CREATE_TIME { get; set; } /// /// 更新时间 /// public DateTime? UPDATE_TIME { get; set; } } }