Address.java
1.97 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package com.huaheng.pc.config.address.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
/**
* 接口地址 WMS存放上下游交互系统对应的url
*/
@ApiModel(value="com.huaheng.pc.config.address.domain.Address")
@Data
@TableName(value = "address")
public class Address implements Serializable {
/**
* 内部号
*/
@TableId(value = "id", type = IdType.AUTO)
@ApiModelProperty(value="内部号")
private Integer id;
/**
* 仓库代码
*/
@TableField(value = "warehouseCode")
@ApiModelProperty(value="仓库代码")
private String warehouseCode;
/**
* 编号
*/
@TableField(value = "number")
@ApiModelProperty(value="编号")
private Integer number;
/**
* 参数
*/
@TableField(value = "param")
@ApiModelProperty(value="参数")
private String param;
/**
* 接口地址
*/
@TableField(value = "url")
@ApiModelProperty(value="接口地址")
private String url;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getWarehouseCode() {
return warehouseCode;
}
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
public Integer getNumber() {
return number;
}
public void setNumber(Integer number) {
this.number = number;
}
public String getParam() {
return param;
}
public void setParam(String param) {
this.param = param;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}