add 标协会议参会人导出增加应收金额
This commit is contained in:
+1
-1
@@ -42,7 +42,7 @@ from (SELECT pwgs.id,
|
||||
2 as type,
|
||||
pwgs.invoice_amount AS billMoney,
|
||||
confirm_amount as confirmAmount,
|
||||
GROUP_CONCAT(pwgsc.contacts_temporary_name) as contactsName,
|
||||
GROUP_CONCAT(pwgsc.contacts_temporary_name order by pwgsc.contacts_temporary_name) as contactsName,
|
||||
pwgs.create_time as createTime
|
||||
FROM pay_working_group pwg
|
||||
right join pay_working_group_subitem pwgs on (pwg.id = pwgs.working_group_id)
|
||||
|
||||
+10
@@ -1,9 +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 java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* @author liJiaRao
|
||||
* @date 2021-09-22 15:40
|
||||
@@ -64,6 +68,12 @@ public class StandardsSituationExcel extends SituationBaseExcel {
|
||||
@Excel(name = "邮编", width = 15)
|
||||
private String postCode;
|
||||
|
||||
/**
|
||||
* 应收金额
|
||||
*/
|
||||
@Excel(name = "应收金额", width = 15)
|
||||
private BigDecimal amountReceivable;
|
||||
|
||||
/**缴费方式*/
|
||||
@Excel(name = "缴费方式", width = 15,dicCode = "meeting_pay_type")
|
||||
private Integer payMode;
|
||||
|
||||
Reference in New Issue
Block a user