zss
2024-12-27 ebede85283906f52dd45d0755d22140538038ac3
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
56
57
package com.yuanchu.mom.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.yuanchu.mom.annotation.ValueTableShow;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDate;
 
@Data
@TableName("procurement_supplies_store")
@ApiModel("耗材入库表")
@JsonIgnoreProperties(ignoreUnknown = true)
public class ProcurementSuppliesStore implements Serializable {
 
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty("目录id")
    private Integer contentsId;
 
    @ApiModelProperty("入库单号")
    @ValueTableShow(value = 1,name = "入库单号")
    private String oddNumbers;
 
    @ApiModelProperty("入库库存")
    private String inventory;
 
    @ApiModelProperty("入库总金额")
    private Double totalAmount;
 
    @ApiModelProperty("入库人")
    private Integer storageUser;
 
    @ApiModelProperty("入库时间")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @ValueTableShow(value = 6,name = "入库日期")
    private LocalDate storageTime;
 
    @ApiModelProperty("入库说明")
    @ValueTableShow(value = 7,name = "说明")
    private String remark;
 
    @ApiModelProperty("登记人")
    private Integer registrant;
 
    @ApiModelProperty("登记时间")
    @ValueTableShow(value = 9,name = "登记日期")
    private LocalDate registrantTime;
 
}