You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
using System;
|
|
using System.ComponentModel;
|
|
|
|
|
|
namespace IBKLinker_Minio.Entity
|
|
{
|
|
[Serializable, Table("BASECODEMASTER"), JsonObject]
|
|
public class BaseCodeMaster
|
|
{
|
|
[Persistent("PK", IsKey = true), DisplayName("PK")]
|
|
public long PK { set; get; }
|
|
|
|
[Persistent("CATEGORY_ID"), DisplayName("类别")]
|
|
public string CATEGORY_ID { set; get; }
|
|
|
|
[Persistent("CATEGORY_DESC"), DisplayName("类别描述")]
|
|
public string CATEGORY_DESC { set; get; }
|
|
|
|
[Persistent("MEMO"), DisplayName("备注")]
|
|
public string MEMO { set; get; }
|
|
|
|
[Persistent("REC_CREATOR"), DisplayName("记录创建责任者")]
|
|
public string REC_CREATOR { set; get; }
|
|
|
|
[Persistent("REC_CREATE_TIME"), DisplayName("记录创建时刻")]
|
|
public DateTime REC_CREATE_TIME { set; get; }
|
|
|
|
[Persistent("REC_REVISOR"), DisplayName("记录修改责任者")]
|
|
public string REC_REVISOR { set; get; }
|
|
|
|
[Persistent("REC_REVISE_TIME"), DisplayName("记录修改时刻")]
|
|
public DateTime? REC_REVISE_TIME { set; get; }
|
|
}
|
|
}
|