| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | |
| | | @ApiModelProperty("领用日期") |
| | | @NotNull(message = "领用日期不能为空") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate operateTime; |
| | | |
| | | @ApiModelProperty("资产类型ID") |
| | |
| | | private Integer assetTypeId; |
| | | |
| | | @ApiModelProperty("预计退还日期,可为空") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate expectReturnDate; |
| | | |
| | | @ApiModelProperty("领用资产列表") |