| | |
| | | package com.ruoyi.system.domain.vo; |
| | | |
| | | import com.ruoyi.common.translation.annotation.Translation; |
| | | import com.ruoyi.common.translation.constant.TransConstant; |
| | | import com.ruoyi.system.domain.SysOss; |
| | | import io.github.linpeilie.annotations.AutoMapper; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serial; |
| | |
| | | * @author Lion Li |
| | | */ |
| | | @Data |
| | | @AutoMapper(target = SysOss.class) |
| | | public class SysOssVo implements Serializable { |
| | | |
| | | @Serial |
| | |
| | | /** |
| | | * 上传人 |
| | | */ |
| | | private String createBy; |
| | | private Long createBy; |
| | | |
| | | /** |
| | | * 上传人名称 |
| | | */ |
| | | @Translation(type = TransConstant.USER_ID_TO_NAME, mapper = "createBy") |
| | | private String createByName; |
| | | |
| | | /** |
| | | * 服务商 |