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.
25 lines
739 B
25 lines
739 B
using System;
|
|
using PEIS.Utils;
|
|
|
|
namespace PEIS.Entity
|
|
{
|
|
/// <summary>
|
|
/// 1.4 报告项目
|
|
/// </summary>
|
|
public class ReportItem : ObjectData
|
|
{
|
|
public override String TableName => "Dict_ReportItem";
|
|
|
|
public String RptItemCode { get; set; }
|
|
public String RptItemName { get; set; }
|
|
public String SpellCode { get; set; }
|
|
public String Unit { get; set; }
|
|
public String ValueFormat { get; set; }
|
|
public String SignFormat { get; set; }
|
|
public Int32? Seq { get; set; }
|
|
public Int64? FID { get; set; }
|
|
public String KeyNo { get; set; }
|
|
public Boolean IsAddSummary { get; set; }
|
|
public string DefaultValue { get; set; }
|
|
}
|
|
} |