crm.core/code/Crm.Core.Entity/Crm/BAS_INNERGROUP.cs

67 lines
1.9 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.Crm
{
[Table("BAS_INNERGROUP")]
public class BAS_INNERGROUP
{
[Key]
public decimal GID { get; set; }
public decimal? SALEDEPTID { get; set; }
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; }
public virtual List<BAS_INNERUSERGROUP>? BAS_INNERUSERGROUP { get; set; }
public virtual List<BAS_GROUPLEADER>? BAS_GROUPLEADER { get; set; }
}
}