fix 参会人校验

This commit is contained in:
lijiarao
2021-09-13 17:36:15 +08:00
parent bd8b7000ca
commit d959acf59a
2 changed files with 3 additions and 3 deletions
@@ -248,7 +248,7 @@ public class PayMeetingSituationServiceImpl extends ServiceImpl<PayMeetingSituat
//如果是标协会议判断会员类型
if (meetingType.equals(Integer.parseInt(MeetingCommon.STANDARD_MEETING))){
//根据企业名称和会员类型不为null判断是否为标协会员
int count = memberInfoService.check(payMeetingSituation.getCompanyName());
int count = memberInfoService.check(payMeetingSituation1.getCompanyName());
//如果是标协会员就存入会议费用(标协会员)
if (count>0){
payMeetingSituation1.setAmountReceivable(payMeeting.getMeetingCostsVip());
@@ -42,7 +42,7 @@ public class InternationalGuestVO {
/**个人简介*/
@Excel(name = "个人简介", width = 15)
@ApiModelProperty(value = "个人简介")
@Size(max = 50, message = "个人简介最大为50字符")
@Size(max = 200, message = "个人简介最大为200字符")
private String profile;
/**是否用餐*/
@@ -157,6 +157,6 @@ public class InternationalGuestVO {
/**备注*/
@Excel(name = "备注", width = 15)
@ApiModelProperty(value = "备注")
@Size(max = 50,message = "备注最大为200字符")
@Size(max = 200,message = "备注最大为200字符")
private String remark;
}