test-entity-library-asm 2.5.8 → 2.6.0
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.
- package/dist/entities/Company.d.ts +3 -3
- package/dist/entities/Company.js +14 -4
- package/dist/entities.views.routes.d.ts +1 -0
- package/dist/entities.views.routes.js +3 -1
- package/dist/views/MasterNotifications.d.ts +19 -0
- package/dist/views/MasterNotifications.js +107 -0
- package/package.json +1 -1
- package/src/entities/Company.ts +14 -4
- package/src/entities.views.routes.ts +1 -0
- package/src/views/MasterNotifications.ts +74 -0
|
@@ -12,11 +12,11 @@ export declare class Company {
|
|
|
12
12
|
name: string;
|
|
13
13
|
city: City;
|
|
14
14
|
partner: Partner;
|
|
15
|
-
profile:
|
|
15
|
+
profile: any;
|
|
16
16
|
quantity_locals: number;
|
|
17
17
|
quantity_users: number;
|
|
18
|
-
legal_information:
|
|
19
|
-
legal_agent:
|
|
18
|
+
legal_information: any;
|
|
19
|
+
legal_agent: any;
|
|
20
20
|
plan: Plan;
|
|
21
21
|
created: Date;
|
|
22
22
|
expiration: Date;
|
package/dist/entities/Company.js
CHANGED
|
@@ -19,6 +19,8 @@ var Partner_1 = require("./Partner");
|
|
|
19
19
|
var PartnerRole_1 = require("./PartnerRole");
|
|
20
20
|
var Plan_1 = require("./Plan");
|
|
21
21
|
var ProductTopping_1 = require("./ProductTopping");
|
|
22
|
+
var jsonTransformer_1 = require("../transformers/jsonTransformer");
|
|
23
|
+
var dateTransformer_1 = require("../transformers/dateTransformer");
|
|
22
24
|
var Company = /** @class */ (function () {
|
|
23
25
|
function Company() {
|
|
24
26
|
}
|
|
@@ -56,9 +58,10 @@ var Company = /** @class */ (function () {
|
|
|
56
58
|
(0, typeorm_1.Column)({
|
|
57
59
|
type: 'longtext',
|
|
58
60
|
nullable: true,
|
|
61
|
+
transformer: jsonTransformer_1.jsonTransformer,
|
|
59
62
|
comment: 'Campo de tipo JSON donde se guarda información necesaria para la empresa.',
|
|
60
63
|
}),
|
|
61
|
-
__metadata("design:type",
|
|
64
|
+
__metadata("design:type", Object)
|
|
62
65
|
], Company.prototype, "profile", void 0);
|
|
63
66
|
__decorate([
|
|
64
67
|
(0, typeorm_1.Column)({
|
|
@@ -78,17 +81,19 @@ var Company = /** @class */ (function () {
|
|
|
78
81
|
(0, typeorm_1.Column)({
|
|
79
82
|
type: 'longtext',
|
|
80
83
|
nullable: true,
|
|
84
|
+
transformer: jsonTransformer_1.jsonTransformer,
|
|
81
85
|
comment: 'Información de tipo JSON donde se guarda la información legal de la empresa.',
|
|
82
86
|
}),
|
|
83
|
-
__metadata("design:type",
|
|
87
|
+
__metadata("design:type", Object)
|
|
84
88
|
], Company.prototype, "legal_information", void 0);
|
|
85
89
|
__decorate([
|
|
86
90
|
(0, typeorm_1.Column)({
|
|
87
91
|
type: 'longtext',
|
|
88
92
|
nullable: true,
|
|
93
|
+
transformer: jsonTransformer_1.jsonTransformer,
|
|
89
94
|
comment: 'Información de tipo JSON donde se guarda la información del representante legal del representante.',
|
|
90
95
|
}),
|
|
91
|
-
__metadata("design:type",
|
|
96
|
+
__metadata("design:type", Object)
|
|
92
97
|
], Company.prototype, "legal_agent", void 0);
|
|
93
98
|
__decorate([
|
|
94
99
|
(0, typeorm_1.ManyToOne)(function () { return Plan_1.Plan; }, function (plan) { return plan.companies; }, {
|
|
@@ -99,7 +104,11 @@ var Company = /** @class */ (function () {
|
|
|
99
104
|
__metadata("design:type", Plan_1.Plan)
|
|
100
105
|
], Company.prototype, "plan", void 0);
|
|
101
106
|
__decorate([
|
|
102
|
-
(0, typeorm_1.Column)({
|
|
107
|
+
(0, typeorm_1.Column)({
|
|
108
|
+
type: 'datetime',
|
|
109
|
+
transformer: new dateTransformer_1.DateTransformer(),
|
|
110
|
+
comment: 'Fecha creación de la empresa.',
|
|
111
|
+
}),
|
|
103
112
|
__metadata("design:type", Date)
|
|
104
113
|
], Company.prototype, "created", void 0);
|
|
105
114
|
__decorate([
|
|
@@ -113,6 +122,7 @@ var Company = /** @class */ (function () {
|
|
|
113
122
|
__decorate([
|
|
114
123
|
(0, typeorm_1.Column)({
|
|
115
124
|
type: 'datetime',
|
|
125
|
+
transformer: new dateTransformer_1.DateTransformer(),
|
|
116
126
|
comment: 'Fecha de actualización de la empresa.',
|
|
117
127
|
}),
|
|
118
128
|
__metadata("design:type", Date)
|
|
@@ -45,5 +45,6 @@ export { MasterNotification } from './entities/MasterNotification';
|
|
|
45
45
|
export { ReassignReview } from './entities/ReassignReview';
|
|
46
46
|
export { LocalsCompany } from './views/LocalsCompany';
|
|
47
47
|
export { VerifyLocals } from './views/VerifyLocals';
|
|
48
|
+
export { MasterNotifications } from './views/MasterNotifications';
|
|
48
49
|
export { CustomRepository } from './CustomRepository';
|
|
49
50
|
export * from './utils';
|
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.CustomRepository = exports.VerifyLocals = exports.LocalsCompany = exports.ReassignReview = exports.MasterNotification = exports.VerifyLocal = exports.PosSystem = exports.AuthenticationCredential = exports.BusinessType = exports.UserAddress = exports.User = exports.TypeMeasureIngredient = exports.TerminalSession = exports.Terminal = exports.Square = exports.RequestStatus = exports.RequestProductGroupComplement = exports.RequestProduct = exports.Request = exports.Region = exports.ProductTopping = exports.ProductIngredient = exports.ProductGroupComplement = exports.ProductGroup = exports.Product = exports.Plan = exports.PaymentMethod = exports.PartnerRole = exports.PartnerPermission = exports.PartnerNotification = exports.Partner = exports.MasterRole = exports.MasterPermission = exports.Master = exports.LocalQualification = exports.Local = exports.DiscountCodeUser = exports.DiscountCodeCompany = exports.Day = exports.Country = exports.Configuration = exports.Company = exports.CodeRedemptionHistoryUser = exports.CodeRedemptionHistoryCompany = exports.City = exports.ScheduleCategory = exports.Category = exports.BusinessTypeProduct = void 0;
|
|
17
|
+
exports.CustomRepository = exports.MasterNotifications = exports.VerifyLocals = exports.LocalsCompany = exports.ReassignReview = exports.MasterNotification = exports.VerifyLocal = exports.PosSystem = exports.AuthenticationCredential = exports.BusinessType = exports.UserAddress = exports.User = exports.TypeMeasureIngredient = exports.TerminalSession = exports.Terminal = exports.Square = exports.RequestStatus = exports.RequestProductGroupComplement = exports.RequestProduct = exports.Request = exports.Region = exports.ProductTopping = exports.ProductIngredient = exports.ProductGroupComplement = exports.ProductGroup = exports.Product = exports.Plan = exports.PaymentMethod = exports.PartnerRole = exports.PartnerPermission = exports.PartnerNotification = exports.Partner = exports.MasterRole = exports.MasterPermission = exports.Master = exports.LocalQualification = exports.Local = exports.DiscountCodeUser = exports.DiscountCodeCompany = exports.Day = exports.Country = exports.Configuration = exports.Company = exports.CodeRedemptionHistoryUser = exports.CodeRedemptionHistoryCompany = exports.City = exports.ScheduleCategory = exports.Category = exports.BusinessTypeProduct = void 0;
|
|
18
18
|
var BusinessTypeProduct_1 = require("./entities/BusinessTypeProduct");
|
|
19
19
|
Object.defineProperty(exports, "BusinessTypeProduct", { enumerable: true, get: function () { return BusinessTypeProduct_1.BusinessTypeProduct; } });
|
|
20
20
|
var Category_1 = require("./entities/Category");
|
|
@@ -109,6 +109,8 @@ var LocalsCompany_1 = require("./views/LocalsCompany");
|
|
|
109
109
|
Object.defineProperty(exports, "LocalsCompany", { enumerable: true, get: function () { return LocalsCompany_1.LocalsCompany; } });
|
|
110
110
|
var VerifyLocals_1 = require("./views/VerifyLocals");
|
|
111
111
|
Object.defineProperty(exports, "VerifyLocals", { enumerable: true, get: function () { return VerifyLocals_1.VerifyLocals; } });
|
|
112
|
+
var MasterNotifications_1 = require("./views/MasterNotifications");
|
|
113
|
+
Object.defineProperty(exports, "MasterNotifications", { enumerable: true, get: function () { return MasterNotifications_1.MasterNotifications; } });
|
|
112
114
|
var CustomRepository_1 = require("./CustomRepository");
|
|
113
115
|
Object.defineProperty(exports, "CustomRepository", { enumerable: true, get: function () { return CustomRepository_1.CustomRepository; } });
|
|
114
116
|
__exportStar(require("./utils"), exports);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export declare class MasterNotifications {
|
|
2
|
+
id: number;
|
|
3
|
+
master: number;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string;
|
|
6
|
+
settings: any;
|
|
7
|
+
type: number;
|
|
8
|
+
created: string;
|
|
9
|
+
status: number;
|
|
10
|
+
master_document: string;
|
|
11
|
+
master_name: string;
|
|
12
|
+
master_surname: string;
|
|
13
|
+
master_email: string;
|
|
14
|
+
master_phone: string;
|
|
15
|
+
master_profile: any;
|
|
16
|
+
master_status: number;
|
|
17
|
+
verify_local_local_information: any;
|
|
18
|
+
verify_local_status: number;
|
|
19
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.MasterNotifications = void 0;
|
|
13
|
+
var typeorm_1 = require("typeorm");
|
|
14
|
+
var moment = require("moment-timezone");
|
|
15
|
+
var __1 = require("..");
|
|
16
|
+
// JSON Transformer
|
|
17
|
+
var jsonTransformer = {
|
|
18
|
+
to: function (value) { return JSON.stringify(value); },
|
|
19
|
+
from: function (value) { return JSON.parse(value); },
|
|
20
|
+
};
|
|
21
|
+
var DateTransformer = {
|
|
22
|
+
to: function (value) {
|
|
23
|
+
return moment.utc(value).format('YYYY-MM-DD HH:mm:ss');
|
|
24
|
+
},
|
|
25
|
+
from: function (value) {
|
|
26
|
+
return moment.utc(value).tz((0, __1.getTimeZone)()).format('YYYY-MM-DD HH:mm:ss');
|
|
27
|
+
},
|
|
28
|
+
};
|
|
29
|
+
var MasterNotifications = /** @class */ (function () {
|
|
30
|
+
function MasterNotifications() {
|
|
31
|
+
}
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.ViewColumn)(),
|
|
34
|
+
__metadata("design:type", Number)
|
|
35
|
+
], MasterNotifications.prototype, "id", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.ViewColumn)(),
|
|
38
|
+
__metadata("design:type", Number)
|
|
39
|
+
], MasterNotifications.prototype, "master", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, typeorm_1.ViewColumn)(),
|
|
42
|
+
__metadata("design:type", String)
|
|
43
|
+
], MasterNotifications.prototype, "name", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, typeorm_1.ViewColumn)(),
|
|
46
|
+
__metadata("design:type", String)
|
|
47
|
+
], MasterNotifications.prototype, "description", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
50
|
+
__metadata("design:type", Object)
|
|
51
|
+
], MasterNotifications.prototype, "settings", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, typeorm_1.ViewColumn)(),
|
|
54
|
+
__metadata("design:type", Number)
|
|
55
|
+
], MasterNotifications.prototype, "type", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], MasterNotifications.prototype, "created", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, typeorm_1.ViewColumn)(),
|
|
62
|
+
__metadata("design:type", Number)
|
|
63
|
+
], MasterNotifications.prototype, "status", void 0);
|
|
64
|
+
__decorate([
|
|
65
|
+
(0, typeorm_1.ViewColumn)(),
|
|
66
|
+
__metadata("design:type", String)
|
|
67
|
+
], MasterNotifications.prototype, "master_document", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, typeorm_1.ViewColumn)(),
|
|
70
|
+
__metadata("design:type", String)
|
|
71
|
+
], MasterNotifications.prototype, "master_name", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, typeorm_1.ViewColumn)(),
|
|
74
|
+
__metadata("design:type", String)
|
|
75
|
+
], MasterNotifications.prototype, "master_surname", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, typeorm_1.ViewColumn)(),
|
|
78
|
+
__metadata("design:type", String)
|
|
79
|
+
], MasterNotifications.prototype, "master_email", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, typeorm_1.ViewColumn)(),
|
|
82
|
+
__metadata("design:type", String)
|
|
83
|
+
], MasterNotifications.prototype, "master_phone", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
86
|
+
__metadata("design:type", Object)
|
|
87
|
+
], MasterNotifications.prototype, "master_profile", void 0);
|
|
88
|
+
__decorate([
|
|
89
|
+
(0, typeorm_1.ViewColumn)(),
|
|
90
|
+
__metadata("design:type", Number)
|
|
91
|
+
], MasterNotifications.prototype, "master_status", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
94
|
+
__metadata("design:type", Object)
|
|
95
|
+
], MasterNotifications.prototype, "verify_local_local_information", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
(0, typeorm_1.ViewColumn)(),
|
|
98
|
+
__metadata("design:type", Number)
|
|
99
|
+
], MasterNotifications.prototype, "verify_local_status", void 0);
|
|
100
|
+
MasterNotifications = __decorate([
|
|
101
|
+
(0, typeorm_1.ViewEntity)({
|
|
102
|
+
name: 'master_notifications',
|
|
103
|
+
})
|
|
104
|
+
], MasterNotifications);
|
|
105
|
+
return MasterNotifications;
|
|
106
|
+
}());
|
|
107
|
+
exports.MasterNotifications = MasterNotifications;
|
package/package.json
CHANGED
package/src/entities/Company.ts
CHANGED
|
@@ -14,6 +14,8 @@ import { Partner } from './Partner'
|
|
|
14
14
|
import { PartnerRole } from './PartnerRole'
|
|
15
15
|
import { Plan } from './Plan'
|
|
16
16
|
import { ProductTopping } from './ProductTopping'
|
|
17
|
+
import { jsonTransformer } from '../transformers/jsonTransformer'
|
|
18
|
+
import { DateTransformer } from '../transformers/dateTransformer'
|
|
17
19
|
|
|
18
20
|
@Entity({
|
|
19
21
|
comment:
|
|
@@ -48,10 +50,11 @@ export class Company {
|
|
|
48
50
|
@Column({
|
|
49
51
|
type: 'longtext',
|
|
50
52
|
nullable: true,
|
|
53
|
+
transformer: jsonTransformer,
|
|
51
54
|
comment:
|
|
52
55
|
'Campo de tipo JSON donde se guarda información necesaria para la empresa.',
|
|
53
56
|
})
|
|
54
|
-
profile:
|
|
57
|
+
profile: any
|
|
55
58
|
|
|
56
59
|
@Column({
|
|
57
60
|
default: 1,
|
|
@@ -70,18 +73,20 @@ export class Company {
|
|
|
70
73
|
@Column({
|
|
71
74
|
type: 'longtext',
|
|
72
75
|
nullable: true,
|
|
76
|
+
transformer: jsonTransformer,
|
|
73
77
|
comment:
|
|
74
78
|
'Información de tipo JSON donde se guarda la información legal de la empresa.',
|
|
75
79
|
})
|
|
76
|
-
legal_information:
|
|
80
|
+
legal_information: any
|
|
77
81
|
|
|
78
82
|
@Column({
|
|
79
83
|
type: 'longtext',
|
|
80
84
|
nullable: true,
|
|
85
|
+
transformer: jsonTransformer,
|
|
81
86
|
comment:
|
|
82
87
|
'Información de tipo JSON donde se guarda la información del representante legal del representante.',
|
|
83
88
|
})
|
|
84
|
-
legal_agent:
|
|
89
|
+
legal_agent: any
|
|
85
90
|
|
|
86
91
|
@ManyToOne(() => Plan, (plan) => plan.companies, {
|
|
87
92
|
onDelete: 'RESTRICT',
|
|
@@ -90,7 +95,11 @@ export class Company {
|
|
|
90
95
|
@JoinColumn({ name: 'plan' })
|
|
91
96
|
plan: Plan
|
|
92
97
|
|
|
93
|
-
@Column({
|
|
98
|
+
@Column({
|
|
99
|
+
type: 'datetime',
|
|
100
|
+
transformer: new DateTransformer(),
|
|
101
|
+
comment: 'Fecha creación de la empresa.',
|
|
102
|
+
})
|
|
94
103
|
created: Date
|
|
95
104
|
|
|
96
105
|
@Column({
|
|
@@ -102,6 +111,7 @@ export class Company {
|
|
|
102
111
|
|
|
103
112
|
@Column({
|
|
104
113
|
type: 'datetime',
|
|
114
|
+
transformer: new DateTransformer(),
|
|
105
115
|
comment: 'Fecha de actualización de la empresa.',
|
|
106
116
|
})
|
|
107
117
|
updated: Date
|
|
@@ -46,6 +46,7 @@ export { ReassignReview } from './entities/ReassignReview'
|
|
|
46
46
|
|
|
47
47
|
export { LocalsCompany } from './views/LocalsCompany'
|
|
48
48
|
export { VerifyLocals } from './views/VerifyLocals'
|
|
49
|
+
export { MasterNotifications } from './views/MasterNotifications'
|
|
49
50
|
|
|
50
51
|
export { CustomRepository } from './CustomRepository'
|
|
51
52
|
export * from './utils'
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { ViewEntity, ViewColumn } from 'typeorm'
|
|
2
|
+
import moment = require('moment-timezone')
|
|
3
|
+
import { getTimeZone } from '..'
|
|
4
|
+
|
|
5
|
+
// JSON Transformer
|
|
6
|
+
const jsonTransformer = {
|
|
7
|
+
to: (value: any) => JSON.stringify(value),
|
|
8
|
+
from: (value: string) => JSON.parse(value),
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const DateTransformer = {
|
|
12
|
+
to(value: Date | string): string {
|
|
13
|
+
return moment.utc(value).format('YYYY-MM-DD HH:mm:ss')
|
|
14
|
+
},
|
|
15
|
+
from(value: string): string {
|
|
16
|
+
return moment.utc(value).tz(getTimeZone()).format('YYYY-MM-DD HH:mm:ss')
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@ViewEntity({
|
|
21
|
+
name: 'master_notifications',
|
|
22
|
+
})
|
|
23
|
+
export class MasterNotifications {
|
|
24
|
+
@ViewColumn()
|
|
25
|
+
id: number
|
|
26
|
+
|
|
27
|
+
@ViewColumn()
|
|
28
|
+
master: number
|
|
29
|
+
|
|
30
|
+
@ViewColumn()
|
|
31
|
+
name: string
|
|
32
|
+
|
|
33
|
+
@ViewColumn()
|
|
34
|
+
description: string
|
|
35
|
+
|
|
36
|
+
@ViewColumn({ transformer: jsonTransformer })
|
|
37
|
+
settings: any
|
|
38
|
+
|
|
39
|
+
@ViewColumn()
|
|
40
|
+
type: number
|
|
41
|
+
|
|
42
|
+
@ViewColumn({ transformer: DateTransformer })
|
|
43
|
+
created: string
|
|
44
|
+
|
|
45
|
+
@ViewColumn()
|
|
46
|
+
status: number
|
|
47
|
+
|
|
48
|
+
@ViewColumn()
|
|
49
|
+
master_document: string
|
|
50
|
+
|
|
51
|
+
@ViewColumn()
|
|
52
|
+
master_name: string
|
|
53
|
+
|
|
54
|
+
@ViewColumn()
|
|
55
|
+
master_surname: string
|
|
56
|
+
|
|
57
|
+
@ViewColumn()
|
|
58
|
+
master_email: string
|
|
59
|
+
|
|
60
|
+
@ViewColumn()
|
|
61
|
+
master_phone: string
|
|
62
|
+
|
|
63
|
+
@ViewColumn({ transformer: jsonTransformer })
|
|
64
|
+
master_profile: any
|
|
65
|
+
|
|
66
|
+
@ViewColumn()
|
|
67
|
+
master_status: number
|
|
68
|
+
|
|
69
|
+
@ViewColumn({ transformer: jsonTransformer })
|
|
70
|
+
verify_local_local_information: any
|
|
71
|
+
|
|
72
|
+
@ViewColumn()
|
|
73
|
+
verify_local_status: number
|
|
74
|
+
}
|