lib_angar_new 2.0.9 → 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,11 +6,15 @@ export declare class ClsTimesheeStock extends Serializable {
|
|
|
6
6
|
*/
|
|
7
7
|
Storeman: number;
|
|
8
8
|
/**
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
* ФИО кладовщика
|
|
10
|
+
*/
|
|
11
11
|
Title: string;
|
|
12
12
|
/**
|
|
13
|
-
|
|
13
|
+
* Login кладовщика
|
|
14
|
+
*/
|
|
15
|
+
Login: string;
|
|
16
|
+
/**
|
|
17
|
+
* Список дат
|
|
14
18
|
*/
|
|
15
19
|
List: Array<ClsTimesheeDate>;
|
|
16
20
|
constructor();
|
|
@@ -29,6 +29,10 @@ __decorate([
|
|
|
29
29
|
(0, ts_serializer_1.SerializeProperty)({ map: "Title", optional: true }),
|
|
30
30
|
__metadata("design:type", String)
|
|
31
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);
|
|
32
36
|
__decorate([
|
|
33
37
|
(0, ts_serializer_1.SerializeProperty)({ map: "List", list: true, type: ClsTimesheeDate_1.ClsTimesheeDate, optional: true }),
|
|
34
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,13 +11,19 @@ export class ClsTimesheeStock extends Serializable
|
|
|
11
11
|
public Storeman: number;
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
* ФИО кладовщика
|
|
15
|
+
*/
|
|
16
16
|
@SerializeProperty({ map: "Title", optional: true })
|
|
17
17
|
public Title: string;
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
|
-
|
|
20
|
+
* Login кладовщика
|
|
21
|
+
*/
|
|
22
|
+
@SerializeProperty({ map: "Login", optional: true })
|
|
23
|
+
public Login: string;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Список дат
|
|
21
27
|
*/
|
|
22
28
|
@SerializeProperty({ map: "List", list: true, type: ClsTimesheeDate, optional: true })
|
|
23
29
|
public List: Array<ClsTimesheeDate>;
|