xuhy
2025-03-07 193945d70b561bc96bb608b47b9b2e4dba3b45b2
ruoyi-system/src/main/java/com/ruoyi/system/export/ContractExport.java
@@ -9,7 +9,7 @@
import java.util.Date;
@Data
@ApiModel(value = "光缆巡检导出excel")
@ApiModel(value = "合同导出excel")
public class ContractExport implements Serializable {
    @Excel(name = "合同编号",width = 30)
@@ -24,15 +24,15 @@
    @Excel(name = "乙方名称",width = 30)
    private String partyTwoName;
    @Excel(name = "创建时间",width = 30,exportFormat = "yyyy-MM-dd")
    private LocalDateTime create_time;
    @Excel(name = "创建时间",width = 30)
    private String createTime;
    @Excel(name = "生效日期",width = 30,exportFormat = "yyyy-MM-dd")
    private LocalDateTime startTime;
    @Excel(name = "生效日期",width = 30)
    private String startTime;
    @Excel(name = "终止日期",width = 30,exportFormat = "yyyy-MM-dd")
    private LocalDateTime endTime;
    @Excel(name = "终止日期",width = 30)
    private String endTime;
    @Excel(name = "租金支付方式",width = 30)
    private String payType;