TG.WXCRM.V4/Model/Entity/BAS_BUSINESSDEPARTMENT.cs

28 lines
675 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.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; }
}
}