| package com.ruoyi.system.export; | 
|   | 
| import cn.afterturn.easypoi.excel.annotation.Excel; | 
| import io.swagger.annotations.ApiModel; | 
| import lombok.Data; | 
|   | 
| import java.io.Serializable; | 
| import java.time.LocalDateTime; | 
| import java.util.Date; | 
|   | 
| @Data | 
| @ApiModel(value = "合同导出excel") | 
| public class ContractExport implements Serializable { | 
|   | 
|     @Excel(name = "合同编号",width = 30) | 
|     private String contractNumber; | 
|   | 
|     @Excel(name = "合同名称",width = 30) | 
|     private String contractName; | 
|   | 
|     @Excel(name = "甲方名称",width = 30) | 
|     private String partyOneName; | 
|   | 
|     @Excel(name = "乙方名称",width = 30) | 
|     private String partyTwoName; | 
|   | 
|     @Excel(name = "创建时间",width = 30) | 
|     private String createTime; | 
|   | 
|   | 
|     @Excel(name = "生效日期",width = 30) | 
|     private String startTime; | 
|   | 
|     @Excel(name = "终止日期",width = 30) | 
|     private String endTime; | 
|   | 
|     @Excel(name = "租金支付方式",width = 30) | 
|     private String payType; | 
|   | 
|     @Excel(name = "押金",width = 30) | 
|     private String deposit; | 
|   | 
|     @Excel(name = "状态",width = 30) | 
|     private String status; | 
|   | 
| //    @Excel(name = "计划周期",width = 30,replace = {"周计划_1","月计划_2"}) | 
| //    private Integer planCycle; | 
|   | 
|   | 
|   | 
| } |