package com.by4cloud.platformx.device.entity.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class ReceivingNotePageVo {
|
|
private Long id;
|
|
/**
|
* 验收单名称
|
*/
|
private String noteName;
|
|
/**
|
* 合同 名称
|
*/
|
private String contractName;
|
|
/**
|
* 验收单号
|
*/
|
private String releaseCode;
|
|
/**
|
* 来源类型
|
*/
|
private String resourceType;
|
|
/**
|
* 生产厂商
|
*/
|
private String manufacturerName;
|
|
/**
|
* 使用公司
|
*/
|
private String deptName;
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private Date releaseDate;
|
}
|