| | |
| | | |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.dromara.common.mybatis.core.domain.BaseEntity; |
| | | import org.dromara.common.translation.annotation.Translation; |
| | | import org.dromara.common.translation.constant.TransConstant; |
| | | import org.dromara.eims.domain.EimsFixture; |
| | |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @AutoMapper(target = EimsFixture.class) |
| | | public class EimsFixtureVo implements Serializable { |
| | | public class EimsFixtureVo extends BaseEntity implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | private Long borrowUser; |
| | | |
| | | /** |
| | | * 借用状态 |
| | | */ |
| | | @ExcelProperty(value = "借用状态", converter = ExcelDictConvert.class) |
| | | @ExcelDictFormat(dictType = "fixture_borrow_status") |
| | | private String borrowStatus; |
| | | |
| | | /** |
| | | * 借用人 |
| | | */ |
| | | @Translation(type = TransConstant.USER_ID_TO_NICKNAME, mapper = "borrowUser") |
| | | private String borrowUserName; |
| | | |
| | | /** |
| | |
| | | @ExcelProperty(value = "备注") |
| | | private String remark; |
| | | |
| | | /** |
| | | * 当前借用记录id |
| | | */ |
| | | private Long curBorrowId; |
| | | |
| | | |
| | | } |