shiyunteng
7 天以前 0ad13cb4bf387d4f2db2d62540ebb73a376087f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.by4cloud.platformx.device.entity.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.Date;
 
@Data
@Schema(description = "设备库存详情")
public class InventoryDetailVo {
 
    @Schema(description = "合同名称")
    private String contractName;
 
    @Schema(description = "租赁方")
    private String rentName;
 
    @Schema(description = "设备编号")
    private String deviceNumber;
 
    @Schema(description = "设备序列号")
    private String serialNo;
 
    @Schema(description = "出租日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date deliveryDate;
 
    @Schema(description = "图片地址")
    private String filePath;
}