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;
|
}
|