using System; using System.Data; using System.Runtime.Serialization; using System.Collections.Generic; using System.Linq; using System.Text; using QMFrameWork.Data.Attributes; namespace QMAPP.Entity.Sys { /// /// 用户仓库权限 /// [DBTable(TableName = "T_BD_EMPLOYEECORP")] public class UserCorpPower { /// /// 主键 /// [DBColumn(ColumnName = "ID", DataType = DbType.String, IsKey = true)] public string ID { get; set; } /// /// 用户主键 /// [DBColumn(ColumnName = "USERID", DataType = DbType.String)] public string USERID { get; set; } /// /// 仓库主键 /// [DBColumn(ColumnName = "CORPID", DataType = DbType.String)] public string CORPID { get; set; } /// ///仓库编号 /// public string CORPCODE { get; set; } /// ///仓库名称 /// public string CORPNAME { get; set; } /// /// 创建日期 /// [DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)] public DateTime CREATEDATE { get; set; } /// /// 创建人 /// [DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)] public string CREATEUSER { get; set; } /// /// 创建日期 /// [DBColumn(ColumnName = "UPDATEDATE", DataType = DbType.DateTime)] public DateTime UPDATEDATE { get; set; } /// /// 创建人 /// [DBColumn(ColumnName = "UPDATEUSER", DataType = DbType.String)] public string UPDATEUSER { get; set; } } }