You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.9 KiB
78 lines
1.9 KiB
4 years ago
|
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
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 员工与要货地关系
|
||
|
/// 创建人:2013.5.3
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_BD_EMPLOYEEREQPLACE")]
|
||
|
public class UserReqPlacePower
|
||
|
{
|
||
|
///<summary>
|
||
|
/// 主建
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "ID", DataType = DbType.String, IsKey = true)]
|
||
|
public string ID { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
/// 用户主键
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "USERID", DataType = DbType.String)]
|
||
|
public string USERID { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
/// 要货地主键
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PLACEDISID", DataType = DbType.String)]
|
||
|
public string PLACEDISID { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
/// 要货地编号
|
||
|
///</summary>
|
||
|
public string PLACEDISNO { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
/// 要货地名称
|
||
|
///</summary>
|
||
|
public string DESCRIBE_SITE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
/// 创建时间
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
|
||
|
public DateTime CREATEDATE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
/// 创建人
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)]
|
||
|
public string CREATEUSER { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
/// 更新时间
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "UPDATEDATE", DataType = DbType.DateTime)]
|
||
|
public DateTime UPDATEDATE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
/// 更新人
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "UPDATEUSER", DataType = DbType.String)]
|
||
|
public string UPDATEUSER { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|