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

36 lines
905 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.Crm
{
[Table("BAS_BUSINESSDEPARTMENT")]
public class BAS_BUSINESSDEPARTMENT
{
[Key]
public decimal ID { get; set; }
public decimal BUSINESSID { get; set; }
/// <summary>
/// 部门ID
/// </summary>
public decimal DEPTID { get; set; }
/// <summary>
/// 1、主部门 2、子部门
/// </summary>
public int DEPTTYPE { get; set; }
public DateTime CTIME { get; set; }
public DateTime UTIME { get; set; }
public virtual BAS_INNERUSERGROUP? BAS_INNERUSERGROUP { get; set; }
public virtual BAS_BUSINESSLINES? BAS_BUSINESSLINES { get; set; }
public virtual BAS_SALESDEPARTMENT? BAS_SALESDEPARTMENT { get; set; }
}
}