WarehouseCompany.java
2.1 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
package com.huaheng.pc.general.company.domain;
import com.huaheng.framework.web.domain.BaseEntity;
import java.util.List;
public class WarehouseCompany extends BaseEntity {
/** id */
private Integer id;
public void setId(Integer id) { this.id = id; }
public Integer getId() { return this.id; }
/** 仓库id */
private Integer warehouseId;
public void setWarehouseId(Integer warehouseId) { this.warehouseId = warehouseId; }
public Integer getWarehouseId() { return this.warehouseId; }
/** 仓库编码 */
private String warehouseCode;
public void setWarehouseCode(String warehouseCode) { this.warehouseCode = warehouseCode; }
public String getWarehouseCode() { return this.warehouseCode; }
/** 货主id */
private Integer companyId;
public void setCompanyId(Integer companyId) { this.companyId = companyId; }
public Integer getCompanyId() { return this.companyId; }
/** 货主编码 */
private String companyCode;
public void setCompanyCode(String companyCode) { this.companyCode = companyCode; }
public String getCompanyCode() { return this.companyCode; }
/** 货主id组 */
private List<Integer> companyIdList;
public List<Integer> getCompanyIdList() {
return companyIdList;
}
public void setCompanyIdList(List<Integer> companyIdList) {
this.companyIdList = companyIdList;
}
/** 货主编码组 */
private List<String> companyCodeList;
public List<String> getCompanyCodeList() {
return companyCodeList;
}
public void setCompanyCodeList(List<String> companyCodeList) {
this.companyCodeList = companyCodeList;
}
@Override
public String toString() {
return "WarehouseCompany{" +
"id=" + id +
", warehouseId=" + warehouseId +
", warehouseCode='" + warehouseCode + '\'' +
", companyId=" + companyId +
", companyCode='" + companyCode + '\'' +
", companyIdList=" + companyIdList +
", companyCodeList=" + companyCodeList +
'}';
}
}