ParentID 为空调整

dhzzyy
luoxingjian 6 months ago
parent 0c2b1ebe33
commit 00f7cf1eb8
  1. 4
      PEIS/Entity/DictHTypeFItem.cs
  2. 3
      PEIS/Model/Setting/HazardTypeModel.cs

@ -52,6 +52,10 @@ namespace PEIS.Entity
/// </summary> /// </summary>
public string FeeItemName { get; set; } public string FeeItemName { get; set; }
/// <summary> /// <summary>
/// 检查项目名称
/// </summary>
public string FeeItemCode { get; set; }
/// <summary>
/// 排序 /// 排序
/// </summary> /// </summary>
public int Sort { get; set; } public int Sort { get; set; }

@ -24,6 +24,7 @@ namespace PEIS.Model.Setting
H.HID, H.HID,
H.FID, H.FID,
H.KeyNo, H.KeyNo,
F.FeeItemCode,
H.Sort, H.Sort,
F.FeeItemName, F.FeeItemName,
F.SettlePrice, F.SettlePrice,
@ -33,7 +34,7 @@ namespace PEIS.Model.Setting
F.ItemClass, F.ItemClass,
F.Price F.Price
FROM Dict_HTypeFItem H FROM Dict_HTypeFItem H
LEFT JOIN vi_FeeItem F ON H.FID=F.ID LEFT JOIN vi_FeeItem F ON H.KeyNo=F.KeyNo
WHERE H.HID={hId}"); WHERE H.HID={hId}");
} }

Loading…
Cancel
Save