update:修改导入到标协会员;修改sortNo的字段类型
This commit is contained in:
+1
-1
@@ -162,7 +162,7 @@ ALTER TABLE `pay_working_group_subitem`
|
||||
|
||||
-- 20240708 工作组表新增自定义排序字段
|
||||
ALTER TABLE `pay_working_group`
|
||||
add column sort_no int comment '自定义排序顺序';
|
||||
add column sort_no decimal(20, 10) comment '自定义排序顺序';
|
||||
|
||||
-- 20240710 新增会议酒店推荐表
|
||||
DROP TABLE IF EXISTS `pay_meeting_hotel_recommend`;
|
||||
|
||||
+3
-3
@@ -101,9 +101,9 @@ public class PayCaseCouncilSubitemServiceImpl extends ServiceImpl<PayCaseCouncil
|
||||
throw new JeroBootException("该标协会员项目不存在");
|
||||
}
|
||||
List<TbMemberProjectSubitem> tbMemberProjectSubitems = new ArrayList<>();
|
||||
BigDecimal councilChargeStandard = tbMemberProject.getCouncilChargeStandard();
|
||||
String councilChargeNoticeNo = tbMemberProject.getCouncilChargeNoticeNo();
|
||||
String chargeNoticeFileId = tbMemberProject.getCouncilChargeNoticeFileId();
|
||||
BigDecimal councilChargeStandard = tbMemberProject.getChargeStandard();
|
||||
String councilChargeNoticeNo = tbMemberProject.getChargeNoticeNo();
|
||||
String chargeNoticeFileId = tbMemberProject.getChargeNoticeFileId();
|
||||
// 将所有企业成员添加到标协会成员表中
|
||||
for (PayCaseCouncilSubitem payCaseCouncilSubitem : councilSubitemList) {
|
||||
String companyId = payCaseCouncilSubitem.getCompanyId();
|
||||
|
||||
+1
-1
@@ -381,5 +381,5 @@ public class PayCommonProject implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "自定义排序顺序")
|
||||
@TableField(exist = false)
|
||||
private Integer sortNo;
|
||||
private BigDecimal sortNo;
|
||||
}
|
||||
|
||||
+1
-1
@@ -162,5 +162,5 @@ public class PayWorkingGroup implements Serializable {
|
||||
private String companyName;
|
||||
|
||||
@ApiModelProperty(value = "自定义排序顺序")
|
||||
private Integer sortNo;
|
||||
private BigDecimal sortNo;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user