using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMAPP.Entity;
using QMFrameWork.Data.Attributes;
using System.Data;
namespace QMAPP.FJC.Entity.Basic
{
[DBTable(TableName = "T_MD_CORP", TimeStampColumn = "UPDATEDATE")]
public class Corp : BaseEntity
{
///
///公司主键
///
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
public string PID { get; set; }
///
///公司编码
///
[DBColumn(ColumnName = "CORP_CODE", DataType = DbType.String)]
public string CORP_CODE { get; set; }
///
///公司名称
///
[DBColumn(ColumnName = "CORP_NAME", DataType = DbType.String)]
public string CORP_NAME { get; set; }
///
///公司简称
///
[DBColumn(ColumnName = "CORP_SHORT", DataType = DbType.String)]
public string CORP_SHORT { get; set; }
///
///公司代码
///
[DBColumn(ColumnName = "Siteid", DataType = DbType.String)]
public string Siteid { get; set; }
///
///公司组织机构
///
[DBColumn(ColumnName = "Orgid", DataType = DbType.String)]
public string Orgid { get; set; }
///
///描述
///
[DBColumn(ColumnName = "REMARK", DataType = DbType.String)]
public string REMARK { get; set; }
///
/// 创建用户
///
[DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)]
public string CREATEUSER { get; set; }
public string CREATEUSERNAME { get; set; }
///
/// 创建时间
///
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime, DefaultValue = DataDefaultValue.SysDate)]
public DateTime CREATEDATE { get; set; }
///
/// 更新用户
///
[DBColumn(ColumnName = "UPDATEUSER", DataType = DbType.String)]
public string UPDATEUSER { get; set; }
public string UPDATEUSERNAME { get; set; }
///
/// 更新时间
///
[DBColumn(ColumnName = "UPDATEDATE", DataType = DbType.DateTime)]
public DateTime UPDATEDATE { get; set; }
}
}