fix:分标委简称

This commit is contained in:
zhangqinlin
2021-12-13 13:52:28 +08:00
parent 08d2d9bc4b
commit 37b776a78b
2 changed files with 4 additions and 1 deletions
@@ -15,6 +15,9 @@ public class FindByName implements Serializable {
@ApiModelProperty(value = "分标委名称")
private java.lang.String name;
@ApiModelProperty(value = "分标委简称")
private java.lang.String abbreviation;
@ApiModelProperty(value = "备注")
private java.lang.String remarks;
@@ -14,7 +14,7 @@
</collection>
</resultMap>
<select id="listThree" resultMap="people">
SELECT pe.id as id,pe.name as name,pe.remarks,#{companyName} as companyName,#{name} as tname
SELECT pe.id as id,pe.name as name,pe.abbreviation,pe.remarks,#{companyName} as companyName,#{name} as tname
from
pay_case_committee pe
left JOIN pay_case_committee_subitem pm on (pe.id = pm.committee_id)