49 lines
1.5 KiB
C#
49 lines
1.5 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class SOFT_REMOTECODE
|
|
{
|
|
/// <summary>
|
|
/// PKID
|
|
/// </summary>
|
|
[DisplayName("主键")]
|
|
[NotMapped]
|
|
public decimal map_PKID { get { return this.PKID; } set { this.PKID = value; } }
|
|
/// <summary>
|
|
/// EID
|
|
/// </summary>
|
|
[DisplayName("工号")]
|
|
[NotMapped]
|
|
public decimal? map_EID { get { return this.EID; } set { this.EID = value; } }
|
|
/// <summary>
|
|
/// REMOTECODE
|
|
/// </summary>
|
|
[DisplayName("授权码")]
|
|
[NotMapped]
|
|
public string map_REMOTECODE { get { return this.REMOTECODE; } set { this.REMOTECODE = value; } }
|
|
/// <summary>
|
|
/// REMARK
|
|
/// </summary>
|
|
[DisplayName("备注")]
|
|
[Required(ErrorMessage = "不能为空!")]
|
|
[NotMapped]
|
|
public string map_REMARK { get { return this.REMARK; } set { this.REMARK = value; } }
|
|
/// <summary>
|
|
/// CTIME
|
|
/// </summary>
|
|
[DisplayName("创建时间")]
|
|
[NotMapped]
|
|
public DateTime? map_CTIME { get { return this.CTIME; } set { this.CTIME = value; } }
|
|
/// <summary>
|
|
/// CREATEUSER
|
|
/// </summary>
|
|
[DisplayName("创建人")]
|
|
[NotMapped]
|
|
public decimal? map_CREATEUSER { get { return this.CREATEUSER; } set { this.CREATEUSER = value; } }
|
|
}
|
|
}
|