Model.java
2.36 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.essa.framework;
/**
* @author Administrator
*pojo对象,用于存储一些运行过程中的变量
*/
public class Model {
public static String skuNo;//商品编号
public static String buyerNo;//采购商编号
public static String supplierName;//供应商名称
public static String picPath;//图片路径
public static String email = "buyer"+Tools.getTime()+"@essa.cn";//采购商邮箱
public static String invateCode;//邀请码
public static String env;//所选环境
public static String buyerAccount;//采购商账号
public static String buyerPassword;//采购商密码
public static String poNum;//po单号
public static int isactivity;//是否是活动商品 1:是 0:否
public static int getIsactivity() {
return isactivity;
}
public static void setIsactivity(int isactivity) {
Model.isactivity = isactivity;
}
public static String getPoNum() {
return poNum;
}
public static void setPoNum(String poNum) {
Model.poNum = poNum;
}
public static String getBuyerAccount() {
return buyerAccount;
}
public static void setBuyerAccount(String buyerAccount) {
Model.buyerAccount = buyerAccount;
}
public static String getBuyerPassword() {
return buyerPassword;
}
public static void setBuyerPassword(String buyerPassword) {
Model.buyerPassword = buyerPassword;
}
public static String getEnv() {
return env;
}
public static void setEnv(String env) {
Model.env = env;
}
public static String getInvateCode() {
return invateCode;
}
public static void setInvateCode(String invateCode) {
Model.invateCode = invateCode;
}
public static String getEmail() {
return email;
}
public static void setEmail(String email) {
Model.email = email;
}
public static String getPicPath() {
return picPath;
}
public static void setPicPath(String picPath) {
Model.picPath = picPath;
}
public static String getSupplierName() {
return supplierName;
}
public static void setSupplierName(String supplierName) {
Model.supplierName = supplierName;
}
public static String getBuyerNo() {
return buyerNo;
}
public static void setBuyerNo(String buyerNo) {
Model.buyerNo = buyerNo;
}
public static String getSkuNo() {
return skuNo;
}
public static void setSkuNo(String No) {
skuNo = No;
}
}