shiyunteng
8 天以前 cc59b65bc63b839127c29775bcd410dd407de66d
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
46
47
48
49
50
51
52
53
54
55
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;
}