| | |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.ruoyi.common.translation.annotation.Translation; |
| | | import com.ruoyi.common.translation.constant.TransConstant; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serial; |
| | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | @Translation(type = TransConstant.USER_ID_TO_NAME) |
| | | @ExcelProperty(value = "创建人") |
| | | private Long createBy; |
| | | |
| | |
| | | /** |
| | | * 更新人 |
| | | */ |
| | | @Translation(type = TransConstant.USER_ID_TO_NAME) |
| | | @ExcelProperty(value = "更新人") |
| | | private Long updateBy; |
| | | |