kongdeqiang
2025-04-02 adf58ddc0337678c2a6770fe8687e54a44998c0d
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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;
}