|
|
@@ -51,13 +51,14 @@ public class InsPlyIncome extends BaseModel {
|
|
|
private String productName;
|
|
|
|
|
|
@Schema(description = "险种")
|
|
|
- @ExcelProperty("险种")
|
|
|
+ @ExcelProperty("险种编码")
|
|
|
@ExcelIgnore
|
|
|
private String riskCode;
|
|
|
|
|
|
@Schema(description = "签单时间")
|
|
|
//@TableField(exist = false)
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ExcelProperty("签单时间")
|
|
|
private LocalDateTime signingTime;
|
|
|
|
|
|
@Schema(description = "签单年份")
|
|
|
@@ -67,6 +68,7 @@ public class InsPlyIncome extends BaseModel {
|
|
|
|
|
|
@Schema(description = "签单日期 yyyy-mm-dd 格式")
|
|
|
@TableField(exist = false)
|
|
|
+ @ExcelProperty("签单日期")
|
|
|
@ExcelIgnore
|
|
|
private String signDate;
|
|
|
|
|
|
@@ -267,6 +269,7 @@ public class InsPlyIncome extends BaseModel {
|
|
|
private String contactPerson;
|
|
|
|
|
|
@Schema(description = "对接人手机号")
|
|
|
+ @ExcelProperty("对接人手机号")
|
|
|
private String contactPersonPhone;
|
|
|
|
|
|
public String getDockingPerson(){
|
|
|
@@ -282,6 +285,7 @@ public class InsPlyIncome extends BaseModel {
|
|
|
private String businessSource;
|
|
|
|
|
|
@Schema(description = "结算时间")
|
|
|
+ @ExcelProperty("结算时间")
|
|
|
private LocalDateTime settlementTime;
|
|
|
|
|
|
// 设置初始值为0, 未结算
|
|
|
@@ -375,15 +379,16 @@ public class InsPlyIncome extends BaseModel {
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
@Schema(description = "非车应收金额")
|
|
|
+ @ExcelProperty("非车应收金额")
|
|
|
private BigDecimal jyTotalPremiums;
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
@Schema(description = "合作保险公司ID")
|
|
|
+ @ExcelIgnore
|
|
|
private String partnerCompanyId;
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
@Schema(description = "禁用标志:1-已对账(禁用),0-未对账(可用)")
|
|
|
+ @ExcelIgnore
|
|
|
private String disableFlag;
|
|
|
-
|
|
|
-
|
|
|
}
|