| | |
| | | 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-录入地址") |
| | | private Integer addressType; |
| | | |
| | | @ApiModelProperty(value = "使用部门/位置名称") |
| | | private String useDeptName; |
| | | |
| | | @ApiModelProperty(value = "仓库名称") |
| | | private String warehouseName; |
| | | |
| | | @ApiModelProperty(value = "所在位置") |
| | | private String address; |
| | | |
| | | @ApiModelProperty(value = "通用资产明细列表(按保存展开后的一条资产记录对应一条明细)") |
| | | private List<GeneralAssetItemVO> assetItems; |
| | |
| | | @ApiModelProperty(value = "使用年限(年)") |
| | | private Integer usefulLife; |
| | | |
| | | @ApiModelProperty(value = "权属单位/部门ID") |
| | | private Integer ownershipDeptId; |
| | | @ApiModelProperty(value = "权属单位/部门名称") |
| | | private String ownerShipDeptName; |
| | | |
| | | @ApiModelProperty(value = "使用人") |
| | | private String userName; |
| | |
| | | @ApiModelProperty(value = "入账金额") |
| | | private BigDecimal accountingAmount; |
| | | |
| | | // 通用资产扩展表字段 |
| | | @ApiModelProperty(value = "供应商名称") |
| | | private String supplierName; |
| | | @ApiModelProperty(value = "位置类型 0-部门,1-仓库,2-录入地址") |
| | | private Integer addressType; |
| | | |
| | | @ApiModelProperty(value = "采购日期") |
| | | private LocalDate purchaseDate; |
| | | @ApiModelProperty(value = "使用部门/位置名称") |
| | | private String useDeptName; |
| | | |
| | | @ApiModelProperty(value = "保修期(月)") |
| | | private Integer warrantyPeriod; |
| | | @ApiModelProperty(value = "仓库名称") |
| | | private String warehouseName; |
| | | |
| | | @ApiModelProperty(value = "保修到期日期") |
| | | private LocalDate warrantyExpireDate; |
| | | |
| | | @ApiModelProperty(value = "折旧方法") |
| | | private String depreciationMethod; |
| | | |
| | | @ApiModelProperty(value = "折旧率") |
| | | private java.math.BigDecimal depreciationRate; |
| | | |
| | | @ApiModelProperty(value = "净值") |
| | | private java.math.BigDecimal netValue; |
| | | |
| | | @ApiModelProperty(value = "维护周期(月)") |
| | | private Integer maintenanceCycle; |
| | | |
| | | @ApiModelProperty(value = "上次维护日期") |
| | | private LocalDate lastMaintenanceDate; |
| | | |
| | | @ApiModelProperty(value = "下次维护日期") |
| | | private LocalDate nextMaintenanceDate; |
| | | @ApiModelProperty(value = "所在位置") |
| | | private String address; |
| | | } |
| | | } |
| | | |