73 lines
2.2 KiB
C#
73 lines
2.2 KiB
C#
namespace WX.CRM.Model.Entity
|
||
{
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.ComponentModel.DataAnnotations;
|
||
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
||
[Table("UPDEV.BAS_INNERGROUP")]
|
||
public partial class BAS_INNERGROUP
|
||
{
|
||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
||
public BAS_INNERGROUP()
|
||
{
|
||
BAS_INNERUSERGROUP = new HashSet<BAS_INNERUSERGROUP>();
|
||
}
|
||
|
||
[Key]
|
||
public decimal GID { get; set; }
|
||
|
||
public decimal? SALEDEPTID { get; set; }
|
||
|
||
[Required]
|
||
[StringLength(50)]
|
||
public string GNAME { get; set; }
|
||
|
||
public decimal? DEPTID { get; set; }
|
||
|
||
public DateTime? CTIME { get; set; }
|
||
|
||
public decimal? CREATEUSER { get; set; }
|
||
|
||
public DateTime? UTIME { get; set; }
|
||
|
||
public decimal? UPDATEUSER { get; set; }
|
||
|
||
public short? ISHIDE { get; set; }
|
||
|
||
public short? ISSALEDEPT { get; set; }
|
||
|
||
public decimal? SORT { get; set; }
|
||
|
||
/// <summary>
|
||
/// 员工系统:对应的部门ID
|
||
/// </summary>
|
||
public decimal? DEPARTMENT_ID { get; set; }
|
||
/// <summary>
|
||
/// 员工系统:对应的部门编码
|
||
/// </summary>
|
||
public string DEPARTMENT_CODE { get; set; }
|
||
/// <summary>
|
||
/// 员工系统:是否为业务部门, 1为业务部门,0为其他部门
|
||
/// </summary>
|
||
public decimal? IS_PROFESSION { get; set; }
|
||
/// <summary>
|
||
/// 员工系统:部门的父ID
|
||
/// </summary>
|
||
public decimal? DEPARTMENT_PARENTID { get; set; }
|
||
/// <summary>
|
||
/// 员工系统:是否勾选1:是 0:否
|
||
/// </summary>
|
||
public decimal? ISCHECK { get; set; }
|
||
public decimal? DEPARTMENT_SORT { get; set; }
|
||
public decimal? IS_DELETED { get; set; }
|
||
|
||
public virtual BAS_INNERDEPARTMENT BAS_INNERDEPARTMENT { get; set; }
|
||
|
||
public virtual BAS_SALESDEPARTMENT BAS_SALESDEPARTMENT { get; set; }
|
||
|
||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||
public virtual ICollection<BAS_INNERUSERGROUP> BAS_INNERUSERGROUP { get; set; }
|
||
}
|
||
}
|