using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.BAS_MON_INNERDEPARTMENT")]
public class BAS_MON_INNERDEPARTMENT
{
///
/// 部门id
///
[Key]
public decimal DEPTID { get; set; }
///
/// 部门
///
public string DEPTNAME { get; set; }
///
/// 上级部门
///
public decimal PARENTID { get; set; }
///
/// 创建时间
///
public DateTime? CTIME { get; set; }
///
/// 创建人
///
public string CREATEUSER { get; set; }
///
/// 修改时间
///
public DateTime? UTIME { get; set; }
///
/// 修改人
///
public string UPDATEUSER { get; set; }
public decimal? BALANCEYEAR { get; set; }
public decimal? BALANCEMONTH { get; set; }
public DateTime BALANCECODE { get; set; }
public DateTime? BALANCEDATE { get; set; }
}
}