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

33 lines
757 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.Crm
{
public class BAS_INNERDEPARTMENT
{
[Key]
public decimal DEPTID { get; set; }
public string? DEPTNAME { get; set; }
public decimal PARENTID { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? UPDATEUSER { get; set; }
public string? INNERDEPTCODE { get; set; }
public virtual List<BAS_INNERGROUP>? BAS_INNERGROUP { get; set; }
public virtual List<BAS_INNERUSERGROUP>? BAS_INNERUSERGROUP { get; set; }
}
}