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.
76 lines
2.0 KiB
76 lines
2.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMFrameWork.Data.Attributes;
|
|
using QMAPP.Entity;
|
|
using System.Data;
|
|
|
|
namespace QMAPP.MD.Entity
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[DBTable(TableName = "T_MD_USERWITHMACHINE", TimeStampColumn = "UPDATEDATE")]
|
|
public class UserWithMachine : BaseEntity
|
|
{
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
///<summary>
|
|
///用户主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "USERID", DataType = DbType.String)]
|
|
public string USERID { get; set; }
|
|
|
|
public string USERNAME { get; set; }
|
|
|
|
public string USERCODE { get; set; }
|
|
|
|
///<summary>
|
|
///设备主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "MACHINEID", DataType = DbType.String)]
|
|
public string MACHINEID { get; set; }
|
|
|
|
public string MACHINENAME { get; set; }
|
|
|
|
public string MACHINECODDE { get; set; }
|
|
|
|
///<summary>
|
|
///创建用户
|
|
///</summary>
|
|
[DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)]
|
|
public string CREATEUSER { get; set; }
|
|
public string CREATEUSERNAME { get; set; }
|
|
|
|
///<summary>
|
|
///创建时间
|
|
///</summary>
|
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
|
|
public DateTime CREATEDATE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///更新用户
|
|
///</summary>
|
|
[DBColumn(ColumnName = "UPDATEUSER", DataType = DbType.String)]
|
|
public string UPDATEUSER { get; set; }
|
|
public string UPDATEUSERNAME { get; set; }
|
|
|
|
///<summary>
|
|
///更新时间
|
|
///</summary>
|
|
[DBColumn(ColumnName = "UPDATEDATE", DataType = DbType.DateTime)]
|
|
public DateTime UPDATEDATE { get; set; }
|
|
|
|
|
|
public string MachineIds { get; set; }
|
|
|
|
public string EDITFLAG { get; set; }
|
|
|
|
}
|
|
}
|
|
|