|
|
@@ -1,5 +1,6 @@
|
|
|
package com.ydtech.modules.inv.model.po;
|
|
|
|
|
|
+import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
import com.alibaba.excel.annotation.write.style.HeadFontStyle;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
@@ -23,6 +24,7 @@ import lombok.EqualsAndHashCode;
|
|
|
@TableName(value ="inv_settlement_source")
|
|
|
@Data
|
|
|
@EqualsAndHashCode
|
|
|
+@ExcelIgnoreUnannotated
|
|
|
@HeadFontStyle(fontHeightInPoints = 10)
|
|
|
public class InvSettlementSource implements Serializable {
|
|
|
|
|
|
@@ -32,7 +34,11 @@ public class InvSettlementSource implements Serializable {
|
|
|
*/
|
|
|
@TableId(value = "id")
|
|
|
@ApiModelProperty("编号")
|
|
|
- private Long id;
|
|
|
+ private String id;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ @ApiModelProperty("ids")
|
|
|
+ private String[] ids;
|
|
|
|
|
|
/**
|
|
|
* 工号
|
|
|
@@ -194,6 +200,16 @@ public class InvSettlementSource implements Serializable {
|
|
|
@ExcelProperty("非车出口比例")
|
|
|
private BigDecimal nonVehicleExportRatio;
|
|
|
|
|
|
+ @TableField(value = "subsidy_ratio")
|
|
|
+ @ExcelProperty("补贴比例")
|
|
|
+ @ApiModelProperty("补贴比例")
|
|
|
+ private BigDecimal subsidyRatio;
|
|
|
+
|
|
|
+ @TableField(value = "subsidy_amount")
|
|
|
+ @ExcelProperty("补贴金额")
|
|
|
+ @ApiModelProperty("补贴金额")
|
|
|
+ private BigDecimal subsidyAmount;
|
|
|
+
|
|
|
/**
|
|
|
* 结算金额
|
|
|
*/
|