63 lines
1.1 KiB
JavaScript
63 lines
1.1 KiB
JavaScript
class RequestDataPojo {
|
|
glvd
|
|
glrd
|
|
hc
|
|
br_oh
|
|
br_ow
|
|
br_h
|
|
br_w
|
|
rs_h
|
|
rs_w
|
|
rs_cd
|
|
ars_h
|
|
ars_w
|
|
plg
|
|
eva
|
|
vnd
|
|
plu
|
|
ua
|
|
dvm
|
|
acw
|
|
cookiesStr
|
|
|
|
constructor(glvd,
|
|
glrd,
|
|
hc,
|
|
br_oh,
|
|
br_ow,
|
|
br_h,
|
|
br_w,
|
|
rs_h,
|
|
rs_w,
|
|
rs_cd,
|
|
ars_h,
|
|
ars_w,
|
|
plg,
|
|
eva,
|
|
vnd,
|
|
plu, ua, dvm, acw) {
|
|
this.glvd = glvd
|
|
this.glrd = glrd
|
|
this.hc = hc
|
|
this.br_oh = br_oh
|
|
this.br_ow = br_ow
|
|
this.br_h = br_h
|
|
this.br_w = br_w
|
|
this.rs_h = rs_h
|
|
this.rs_w = rs_w
|
|
this.rs_cd = rs_cd
|
|
this.ars_h = ars_h
|
|
this.ars_w = ars_w
|
|
this.plg = plg
|
|
this.eva = eva
|
|
this.vnd = vnd
|
|
this.plu = plu
|
|
this.ua = ua
|
|
this.dvm = dvm
|
|
this.acw = acw
|
|
|
|
}
|
|
}
|
|
|
|
|
|
module.exports = RequestDataPojo |