c98c375e
Administrator
all
|
1
2
3
4
5
6
7
8
|
package com.essa.framework;
/**
* @author Administrator
*pojo对象,用于存储一些运行过程中的变量
*/
public class Model {
|
c3910777
Administrator
by zengjin10-25
|
9
|
public static String skuNo="200056786";//商品编号
|
c98c375e
Administrator
all
|
10
11
12
13
14
15
16
17
|
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;//采购商密码
|
c3910777
Administrator
by zengjin10-25
|
18
|
public static String poNum="A181107T9194B";//po单号
|
a62053f7
Administrator
add scene
|
19
20
21
|
public static int isactivity=0;//是否是活动商品 1:是 0:否
public static String manager;//商品的类目经理
public static String serialNum;//待办流水号
|
c98c375e
Administrator
all
|
22
23
|
|
a62053f7
Administrator
add scene
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
public static String getSerialNum() {
return serialNum;
}
public static void setSerialNum(String serialNum) {
Model.serialNum = serialNum;
}
public static String getManager() {
return manager;
}
public static void setManager(String manager) {
Model.manager = manager;
}
|
c98c375e
Administrator
all
|
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
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;
}
}
|