| | |
| | | package com.ruoyi.system.vo.asset; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.system.model.OaApprovalApplicationAssetItem; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private Integer assetTypeId; |
| | | |
| | | @ApiModelProperty(value = "领用/借用日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | private LocalDate operateTime; |
| | | |
| | | @ApiModelProperty(value = "预计退还日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | private LocalDate expectReturnDate; |
| | | |
| | | @ApiModelProperty(value = "操作类型 0-领用,1-借用,2-归还") |
| | |
| | | private Integer borrowApplicationId; |
| | | |
| | | @ApiModelProperty("关联资产项列表") |
| | | private List<OaApprovalApplicationAssetItem> items; |
| | | private List<AssetMainVO> items; |
| | | } |
| | | |