lib_angar_new 2.0.12 → 2.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -17,6 +17,7 @@ let ClsCompletedWorkFilter = class ClsCompletedWorkFilter extends ts_serializer_
|
|
|
17
17
|
super();
|
|
18
18
|
this.ClsApiRequest = new ClsApiRequest_1.ClsApiRequest();
|
|
19
19
|
this.LoginStoreMan = "";
|
|
20
|
+
this.Uuid = "";
|
|
20
21
|
}
|
|
21
22
|
};
|
|
22
23
|
exports.ClsCompletedWorkFilter = ClsCompletedWorkFilter;
|
|
@@ -28,6 +29,10 @@ __decorate([
|
|
|
28
29
|
(0, ts_serializer_1.SerializeProperty)({ map: "loginStoreMan", optional: true }),
|
|
29
30
|
__metadata("design:type", String)
|
|
30
31
|
], ClsCompletedWorkFilter.prototype, "LoginStoreMan", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "uuid", optional: true }),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], ClsCompletedWorkFilter.prototype, "Uuid", void 0);
|
|
31
36
|
exports.ClsCompletedWorkFilter = ClsCompletedWorkFilter = __decorate([
|
|
32
37
|
(0, ts_serializer_1.Serialize)({}),
|
|
33
38
|
__metadata("design:paramtypes", [])
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClsCompletedWorkFilter.js","sourceRoot":"","sources":["ClsCompletedWorkFilter.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAC3E,+DAA4D;AAGrD,IAAM,sBAAsB,GAA5B,MAAM,sBAAuB,SAAQ,4BAAY;
|
|
1
|
+
{"version":3,"file":"ClsCompletedWorkFilter.js","sourceRoot":"","sources":["ClsCompletedWorkFilter.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAC3E,+DAA4D;AAGrD,IAAM,sBAAsB,GAA5B,MAAM,sBAAuB,SAAQ,4BAAY;IAevD;QAEC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,aAAa,GAAG,IAAI,6BAAa,EAAE,CAAC;QACzC,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;QACxB,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC;IAChB,CAAC;CACD,CAAA;AAtBY,wDAAsB;AAM3B;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,eAAe,EAAE,IAAI,EAAE,6BAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC3D,6BAAa;6DAAC;AAG7B;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DAC/B;AAGtB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC/B;iCAZR,sBAAsB;IADlC,IAAA,yBAAS,EAAC,EAAE,CAAC;;GACD,sBAAsB,CAsBlC"}
|
|
@@ -10,16 +10,18 @@ export class ClsCompletedWorkFilter extends Serializable
|
|
|
10
10
|
@SerializeProperty({ map: "clsApiRequest", type: ClsApiRequest, optional: true })
|
|
11
11
|
public ClsApiRequest: ClsApiRequest;
|
|
12
12
|
|
|
13
|
-
/**
|
|
14
|
-
* Начало периода
|
|
15
|
-
*/
|
|
16
13
|
@SerializeProperty({ map: "loginStoreMan", optional: true })
|
|
17
14
|
public LoginStoreMan: string;
|
|
18
15
|
|
|
16
|
+
@SerializeProperty({ map: "uuid", optional: true })
|
|
17
|
+
public Uuid: string;
|
|
18
|
+
|
|
19
|
+
|
|
19
20
|
constructor()
|
|
20
21
|
{
|
|
21
22
|
super();
|
|
22
23
|
this.ClsApiRequest = new ClsApiRequest();
|
|
23
24
|
this.LoginStoreMan = "";
|
|
25
|
+
this.Uuid = "";
|
|
24
26
|
}
|
|
25
27
|
}
|