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; }
///
/// 部门ID
///
public decimal DEPTID { get; set; }
///
/// 1、主部门 2、子部门
///
public int DEPTTYPE { get; set; }
public DateTime CTIME { get; set; }
public DateTime UTIME { get; set; }
}
}