| | |
| | | package com.vincent.rsf.server.manager.entity.excel; |
| | | |
| | | import cn.afterturn.easypoi.excel.annotation.Excel; |
| | | import com.vincent.rsf.server.manager.entity.excel.annotation.ExcelAutoColumnSize; |
| | | import com.vincent.rsf.server.manager.entity.excel.annotation.ExcelComment; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.ToString; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import cn.afterturn.easypoi.excel.annotation.Excel; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | import lombok.experimental.Accessors; |
| | | import lombok.Data; |
| | | |
| | | |
| | | /** |
| | | * |
| | | * @author Ryan |
| | | * @version 1.0 |
| | | * @title MatnrsTemplate |
| | |
| | | @Excel(name = "货主标识") |
| | | @ExcelComment(example = "123") |
| | | private Long shipperId; |
| | | |
| | | |
| | | |
| | | @NotNull |
| | |
| | | @Excel(name = "是否免检") |
| | | @ExcelComment(notNull = false, example = "0") |
| | | private String flagCheck; |
| | | |
| | | |
| | | } |