【update】- 国际研讨会-参会人导出-增加待确收金额

This commit is contained in:
fengchenchen
2023-11-21 11:09:04 +08:00
parent c96575413d
commit 3fc20ebf8f
@@ -1,11 +1,13 @@
package com.jero.meeting.vo.excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.jero.common.aspect.annotation.Dict;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
import javax.validation.constraints.Size;
import java.math.BigDecimal;
/**
* @author liJiaRao
@@ -50,6 +52,12 @@ public class InternationalSituationExcel extends SituationBaseExcel {
/**参加会议名称*/
@Excel(name = "参加会议名称", width = 15, dicCode = "linkTopics")
private String choiceTopic;
/**
* 待确收金额
*/
@Excel(name = "待确收金额", width = 15)
@JsonFormat(shape = JsonFormat.Shape.STRING)
private BigDecimal amountReceivable;
/**演讲题目*/
@Excel(name = "演讲题目", width = 15)
@@ -138,4 +146,5 @@ public class InternationalSituationExcel extends SituationBaseExcel {
@Excel(name = "订单后4位编码", width = 15)
private String orderCode;
}