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 org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
@Data
|
public class DevicePurchasePlanPageVo {
|
|
private Long id;
|
/**
|
* 采购计划名称
|
*/
|
@Schema(description = "采购计划名称")
|
private String planName;
|
|
/**
|
* 采购计划编号
|
*/
|
@Schema(description = "采购计划编号")
|
private String planCode;
|
|
/**
|
* 申请人
|
*/
|
@Schema(description = "申请人")
|
private Long releaseId;
|
|
/**
|
* 申请单位
|
*/
|
@Schema(description = "申请单位")
|
private Long releaseCompId;
|
|
/**
|
* 申请时间
|
*/
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Schema(description = "申请时间")
|
private Date releaseTime;
|
|
/**
|
* 状态
|
*/
|
@Schema(description = "状态")
|
private Integer status;
|
|
private String userName;
|
|
private String deptName;
|
}
|