chengf
2026-02-06 49158a77cb676a15bebe1be5507e18e5a30c1fa5
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/demo/contract/entity/SemanticWord.java
@@ -9,6 +9,7 @@
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import io.swagger.v3.oas.annotations.media.Schema;
import org.springframework.web.multipart.MultipartFile;
import java.util.List;
@@ -60,6 +61,10 @@
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @Schema(description = "结束日期")
    private java.util.Date endDate;
    /**合作月份*/
    @Excel(name = "合作月份", width = 15)
    @Schema(description = "合作月份")
    private java.lang.Integer month;
   /**见词时间*/
   @Excel(name = "见词时间", width = 15)
    @Schema(description = "见词时间")
@@ -83,7 +88,7 @@
   @Excel(name = "状态", width = 15, dicCode = "yuyici_status")
    @Dict(dicCode = "yuyici_status")
    @Schema(description = "状态")
    private java.lang.String status;;
    private java.lang.String status;
   /**后缀添加*/
   @Excel(name = "后缀添加", width = 15)
    @Schema(description = "后缀添加")
@@ -118,15 +123,24 @@
    @Excel(name = "实发平台", width = 15)
    @Schema(description = "实发平台")
    private java.lang.String outUrl;
    /**价格*/
    @Excel(name = "价格", width = 15)
    @Schema(description = "价格")
    private java.lang.Double price;
    @TableField(exist = false)
    private Contract contract;
    @TableField(exist = false)
    private String isDropService;
    @TableField(exist = false)
    private List<SemanticWord> semanticWordList;
    @TableField(exist = false)
    private String customerName;
    @TableField(exist = false)
    private String agentName;
    @TableField(exist = false)
    private String checkStartTime;
@@ -138,4 +152,26 @@
    @TableField(exist = false)
    private String statusFilter;
    @TableField(exist = false)
    private String changerNotEqual;
    @TableField(exist = false)
    private String user;
    /**验收指标*/
    @Excel(name = "验收指标", width = 15)
    @Schema(description = "验收指标")
    private java.lang.Double acceptindicator;
    @Excel(name = "掉词记录数", width = 15)
    @Schema(description = "掉词记录数")
    private java.lang.String count;
    @Excel(name = "大类", width = 15)
    @Schema(description = "大类")
    private java.lang.String categoryOne;
    @Excel(name = "品牌", width = 15)
    @Schema(description = "品牌")
    private java.lang.String brand;
}