| | |
| | | package com.ruoyi.system.vo.asset; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private String applicantName; |
| | | |
| | | @ApiModelProperty(value = "申请日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate applicationDate; |
| | | |
| | | @ApiModelProperty(value = "入库备注") |
| | |
| | | private Integer assetTypeId; |
| | | |
| | | @ApiModelProperty(value = "入库类型 0-正常入库") |
| | | private Boolean storageType; |
| | | private Integer storageType; |
| | | |
| | | @ApiModelProperty(value = "入库日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate storageTime; |
| | | |
| | | @ApiModelProperty(value = "位置类型 0-部门,1-仓库,2-录入地址") |
| | |
| | | @ApiModelProperty(value = "使用年限(年)") |
| | | private Integer usefulLife; |
| | | |
| | | @ApiModelProperty(value = "权属单位/部门ID") |
| | | private Integer ownershipDeptId; |
| | | @ApiModelProperty(value = "权属单位/部门名称") |
| | | private String ownerShipDeptName; |
| | | |
| | | @ApiModelProperty(value = "使用人") |
| | | private String userName; |
| | |
| | | @ApiModelProperty(value = "安置情况") |
| | | private String resettlementSituation; |
| | | |
| | | @ApiModelProperty(value = "是否抵押:0-否,1-是") |
| | | private Boolean isMortgaged; |
| | | @ApiModelProperty(value = "是否抵押:否,是") |
| | | private String mortgaged; |
| | | |
| | | @ApiModelProperty(value = "承租方") |
| | | private String tenantName; |
| | |
| | | private BigDecimal rentalAmount; |
| | | |
| | | @ApiModelProperty(value = "租赁期限起") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate leaseStartDate; |
| | | |
| | | @ApiModelProperty(value = "租赁期限止") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate leaseEndDate; |
| | | } |
| | | } |
| | | |