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.
66 lines
1.8 KiB
66 lines
1.8 KiB
using System;
|
|
using PEIS.Utils;
|
|
|
|
namespace PEIS.Entity
|
|
{
|
|
/// <summary>
|
|
/// 1.2 收费项目
|
|
/// </summary>
|
|
public partial class FeeItem : ObjectData
|
|
{
|
|
public override String TableName => "Dict_FeeItem";
|
|
|
|
public String FeeItemCode { get; set; }
|
|
public String SpellCode { get; set; }
|
|
public Decimal? SettlePrice { get; set; }
|
|
public String Unit { get; set; }
|
|
public String KeyNo { get; set; }
|
|
public String FeeItemTips { get; set; }
|
|
/// <summary>
|
|
/// 指引单隐藏:勾选后该项目不出现在指引单
|
|
/// </summary>
|
|
public Boolean IsHideInGuide { get; set; }
|
|
/// <summary>
|
|
/// 分总检隐藏:勾选后该项目不进行科室分检和总检
|
|
/// </summary>
|
|
public Boolean IsHide { get; set; }
|
|
public String ClassName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用微信预约
|
|
/// </summary>
|
|
public Boolean IsReserve { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public String FeeItemName { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public String DeptCode { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public String DeptName { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public String UnitName { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public String ItemClass { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public Decimal Price { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public String Quantity { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public Int64 FID { get; set; }
|
|
[RefFlag(true)]
|
|
public Int64 PID { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public String SpecimenCode { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public String SpecimenName { get; set; }
|
|
}
|
|
} |