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.

39 lines
1.2 KiB
C#

using Newtonsoft.Json;
using SOA.Persistent;
using System;
using System.ComponentModel;
namespace IBKLinker_Minio.Entity
{
[Serializable, Table("BASECODEDETAIL"), JsonObject]
public class BaseCodeDetail
{
[Persistent("PK", IsKey = true), DisplayName("主键")]
public decimal PK { set; get; }
[Persistent("CATEGORY_ID"), DisplayName("大类")]
public string CATEGORY_ID { set; get; }
[Persistent("ITEM_ID"), DisplayName("代码")]
public string ITEM_ID { set; get; }
[Persistent("ITEM_DESC"), DisplayName("代码描述")]
public string ITEM_DESC { set; get; }
[Persistent("REC_REVISOR"), DisplayName("记录修改责任者")]
public string REC_REVISOR { set; get; }
[Persistent("REC_REVISE_TIME"), DisplayName("记录修改时刻")]
public DateTime? REC_REVISE_TIME { 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; }
}
}