| | |
| | | */ |
| | | private String supplierName; |
| | | |
| | | @Schema(description = "设备编号") |
| | | private String uniqueCode; |
| | | |
| | | @Schema(description = "出厂编号") |
| | | private String factoryNumber; |
| | | |
| | | @Schema(description = "制造厂商") |
| | | private String manufacturer; |
| | | |
| | | @Schema(description = "资产原值") |
| | | private BigDecimal originalAssetValue; |
| | | |
| | | @Schema(description = "购置日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate purchaseDate; |
| | | |
| | | @Schema(description = "启用日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate activationDate; |
| | | |
| | | @Schema(description = "主要技术参数") |
| | | private String technicalParameters; |
| | | |
| | | @Schema(description = "主要用途") |
| | | private String mainPurpose; |
| | | |
| | | @Schema(description = "责任人") |
| | | private String responsiblePerson; |
| | | |
| | | @Schema(description = "建档日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate filingDate; |
| | | |
| | | /** |
| | | * 设备附件(用于接收) |
| | | */ |