lib_angar_new 2.0.8 → 2.0.10
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.
|
@@ -6,7 +6,15 @@ export declare class ClsTimesheeStock extends Serializable {
|
|
|
6
6
|
*/
|
|
7
7
|
Storeman: number;
|
|
8
8
|
/**
|
|
9
|
-
|
|
9
|
+
* ФИО кладовщика
|
|
10
|
+
*/
|
|
11
|
+
Title: string;
|
|
12
|
+
/**
|
|
13
|
+
* Login кладовщика
|
|
14
|
+
*/
|
|
15
|
+
Login: string;
|
|
16
|
+
/**
|
|
17
|
+
* Список дат
|
|
10
18
|
*/
|
|
11
19
|
List: Array<ClsTimesheeDate>;
|
|
12
20
|
constructor();
|
|
@@ -16,6 +16,7 @@ let ClsTimesheeStock = class ClsTimesheeStock extends ts_serializer_1.Serializab
|
|
|
16
16
|
constructor() {
|
|
17
17
|
super();
|
|
18
18
|
this.Storeman = 0;
|
|
19
|
+
this.Title = "";
|
|
19
20
|
this.List = new Array();
|
|
20
21
|
}
|
|
21
22
|
};
|
|
@@ -24,6 +25,14 @@ __decorate([
|
|
|
24
25
|
(0, ts_serializer_1.SerializeProperty)({ map: "Storeman", optional: true }),
|
|
25
26
|
__metadata("design:type", Number)
|
|
26
27
|
], ClsTimesheeStock.prototype, "Storeman", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "Title", optional: true }),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], ClsTimesheeStock.prototype, "Title", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "Login", optional: true }),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], ClsTimesheeStock.prototype, "Login", void 0);
|
|
27
36
|
__decorate([
|
|
28
37
|
(0, ts_serializer_1.SerializeProperty)({ map: "List", list: true, type: ClsTimesheeDate_1.ClsTimesheeDate, optional: true }),
|
|
29
38
|
__metadata("design:type", Array)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClsTimesheeStock.js","sourceRoot":"","sources":["ClsTimesheeStock.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAC3E,uDAAoD;AAG7C,IAAM,gBAAgB,GAAtB,MAAM,gBAAiB,SAAQ,4BAAY;
|
|
1
|
+
{"version":3,"file":"ClsTimesheeStock.js","sourceRoot":"","sources":["ClsTimesheeStock.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAC3E,uDAAoD;AAG7C,IAAM,gBAAgB,GAAtB,MAAM,gBAAiB,SAAQ,4BAAY;IA0BjD;QAEC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;QAClB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;QAChB,IAAI,CAAC,IAAI,GAAG,IAAI,KAAK,EAAmB,CAAC;IAC1C,CAAC;CACD,CAAA;AAjCY,4CAAgB;AAMrB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,UAAU,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDAC/B;AAMjB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAC/B;AAMd;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAC/B;AAMd;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,iCAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACzE,KAAK;8CAAkB;2BAxBxB,gBAAgB;IAD5B,IAAA,yBAAS,EAAC,EAAE,CAAC;;GACD,gBAAgB,CAiC5B"}
|
|
@@ -11,7 +11,19 @@ export class ClsTimesheeStock extends Serializable
|
|
|
11
11
|
public Storeman: number;
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
|
-
|
|
14
|
+
* ФИО кладовщика
|
|
15
|
+
*/
|
|
16
|
+
@SerializeProperty({ map: "Title", optional: true })
|
|
17
|
+
public Title: string;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Login кладовщика
|
|
21
|
+
*/
|
|
22
|
+
@SerializeProperty({ map: "Login", optional: true })
|
|
23
|
+
public Login: string;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Список дат
|
|
15
27
|
*/
|
|
16
28
|
@SerializeProperty({ map: "List", list: true, type: ClsTimesheeDate, optional: true })
|
|
17
29
|
public List: Array<ClsTimesheeDate>;
|
|
@@ -20,6 +32,7 @@ export class ClsTimesheeStock extends Serializable
|
|
|
20
32
|
{
|
|
21
33
|
super();
|
|
22
34
|
this.Storeman = 0;
|
|
35
|
+
this.Title = "";
|
|
23
36
|
this.List = new Array<ClsTimesheeDate>();
|
|
24
37
|
}
|
|
25
38
|
}
|