EquipmentAllotQueryVO.java
2.4 KB
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
58
59
60
61
62
63
64
65
66
package com.skua.modules.supplies.vo;
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.skua.core.aspect.annotation.Dict;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@Data
@ApiModel("EquipmentAllotQueryVO")
public class EquipmentAllotQueryVO {
@ApiModelProperty(value = "调拨id")
private String id;
@Dict(dictTable = "sys_depart", dicCode = "id", dicText = "depart_name")
@ApiModelProperty(value = "所属部门 ")
private String departId;
@Excel(name = "调拨单号", width = 25)
@ApiModelProperty(value = "调拨单号 ")
private String allotOrder;
@Excel(name = "调拨物料", width = 15)
@ApiModelProperty(value = "调拨物料 ")
private String supplies;
@Dict(dicCode = "id", dicText = "realname", dictTable = "sys_user")
@ApiModelProperty(value = "经办人 ")
@Excel(name = "经办人", width = 15,dicCode = "id", dicText = "realname", dictTable = "sys_user")
private String transactBy;
@Excel(name = "调拨时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "调拨时间 ")
private Date allotTime;
@Excel(name = "出库仓库", width = 15)
@ApiModelProperty(value = "出库仓库 ")
private String outSuppliesWarehouse;
@Excel(name = "出库仓库", width = 15,dicCode = "id", dicText = "warehouse_name", dictTable = "supplies_warehouse")
@ApiModelProperty(value = "出库仓库 ")
@Dict(dicCode = "id", dicText = "warehouse_name", dictTable = "supplies_warehouse")
private String outSuppliesWarehouseId;
@Excel(name = "入库仓库", width = 15)
@ApiModelProperty(value = "入库仓库 ")
private String inSuppliesWarehouse;
@Excel(name = "入库仓库", width = 15,dicCode = "id", dicText = "warehouse_name", dictTable = "supplies_warehouse")
@ApiModelProperty(value = "入库仓库 ")
@Dict(dicCode = "id", dicText = "warehouse_name", dictTable = "supplies_warehouse")
private String inSuppliesWarehouseId;
@Excel(name = "备注", width = 15)
@ApiModelProperty(value = "备注 ")
private String allotRemark;
}