| | |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass; |
| | | import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | * @date: 2021/3/11 17:11 |
| | | */ |
| | | @Data |
| | | @EncryptDecryptClass |
| | | public class ComMngCarExcelVO implements Serializable { |
| | | /** |
| | | * 小区名称 |
| | |
| | | /** |
| | | * 车主身份证号码 |
| | | */ |
| | | @EncryptDecryptField |
| | | @ExcelProperty(value = "车主身份证号码" ,index = 2) |
| | | private String cardNo; |
| | | |
| | |
| | | */ |
| | | @ExcelProperty(value = "联系方式" ,index = 6) |
| | | private String mobile; |
| | | |
| | | /** |
| | | * 详细住址 |
| | | */ |
| | | @ExcelProperty(value = "详细住址" ,index = 7) |
| | | private String address; |
| | | |
| | | } |
| | | |