shiyunteng
2025-03-26 a45f6c10be2177ccb7f654d1ed2ae208ebb13919
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
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 releaseCode;
 
    /**
     * 来源类型
     */
    private String resourceType;
 
    /**
     * 生产厂商
     */
    private String manufacturerName;
 
    /**
     * 使用公司
     */
    private String deptName;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date releaseDate;
}