test-entity-library-asm 2.6.6 → 2.6.8
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/PartnerNotification.js +1 -1
- package/dist/entities.views.routes.d.ts +1 -0
- package/dist/entities.views.routes.js +3 -1
- package/dist/views/UserInformation.d.ts +39 -0
- package/dist/views/UserInformation.js +187 -0
- package/package.json +1 -1
- package/src/entities/PartnerNotification.ts +1 -1
- package/src/entities.views.routes.ts +1 -0
- package/src/views/UserInformation.ts +135 -0
|
@@ -48,7 +48,7 @@ var PartnerNotification = /** @class */ (function () {
|
|
|
48
48
|
], PartnerNotification.prototype, "description", void 0);
|
|
49
49
|
__decorate([
|
|
50
50
|
(0, typeorm_1.Column)({
|
|
51
|
-
type: '
|
|
51
|
+
type: 'text',
|
|
52
52
|
nullable: true,
|
|
53
53
|
transformer: jsonTransformer_1.jsonTransformer,
|
|
54
54
|
comment: 'Configuración adicional de la notificación, como enlaces, qué hace después de darle click...',
|
|
@@ -46,5 +46,6 @@ export { ReassignReview } from './entities/ReassignReview';
|
|
|
46
46
|
export { LocalsCompany } from './views/LocalsCompany';
|
|
47
47
|
export { VerifyLocals } from './views/VerifyLocals';
|
|
48
48
|
export { MasterNotifications } from './views/MasterNotifications';
|
|
49
|
+
export { UserInformation } from './views/UserInformation';
|
|
49
50
|
export { CustomRepository } from './CustomRepository';
|
|
50
51
|
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.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;
|
|
17
|
+
exports.CustomRepository = exports.UserInformation = 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");
|
|
@@ -111,6 +111,8 @@ var VerifyLocals_1 = require("./views/VerifyLocals");
|
|
|
111
111
|
Object.defineProperty(exports, "VerifyLocals", { enumerable: true, get: function () { return VerifyLocals_1.VerifyLocals; } });
|
|
112
112
|
var MasterNotifications_1 = require("./views/MasterNotifications");
|
|
113
113
|
Object.defineProperty(exports, "MasterNotifications", { enumerable: true, get: function () { return MasterNotifications_1.MasterNotifications; } });
|
|
114
|
+
var UserInformation_1 = require("./views/UserInformation");
|
|
115
|
+
Object.defineProperty(exports, "UserInformation", { enumerable: true, get: function () { return UserInformation_1.UserInformation; } });
|
|
114
116
|
var CustomRepository_1 = require("./CustomRepository");
|
|
115
117
|
Object.defineProperty(exports, "CustomRepository", { enumerable: true, get: function () { return CustomRepository_1.CustomRepository; } });
|
|
116
118
|
__exportStar(require("./utils"), exports);
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export declare class UserInformation {
|
|
2
|
+
id: number;
|
|
3
|
+
company: number;
|
|
4
|
+
code: string;
|
|
5
|
+
document: string;
|
|
6
|
+
name: string;
|
|
7
|
+
surname: string;
|
|
8
|
+
email: string;
|
|
9
|
+
phone: string;
|
|
10
|
+
city: number;
|
|
11
|
+
address: string;
|
|
12
|
+
password: string;
|
|
13
|
+
profile: any;
|
|
14
|
+
owner: number;
|
|
15
|
+
created: string;
|
|
16
|
+
updated: string;
|
|
17
|
+
status: number;
|
|
18
|
+
visible: number;
|
|
19
|
+
region: number;
|
|
20
|
+
name_city: string;
|
|
21
|
+
status_city: number;
|
|
22
|
+
code_company: string;
|
|
23
|
+
name_company: string;
|
|
24
|
+
city_company: number;
|
|
25
|
+
partner: number;
|
|
26
|
+
profile_company: any;
|
|
27
|
+
quantity_locals: number;
|
|
28
|
+
quantity_users: number;
|
|
29
|
+
legal_information: any;
|
|
30
|
+
legal_agent: any;
|
|
31
|
+
plan: number;
|
|
32
|
+
created_company: string;
|
|
33
|
+
expiration_company: string;
|
|
34
|
+
updated_company: string;
|
|
35
|
+
status_company: number;
|
|
36
|
+
locals_asigned: any;
|
|
37
|
+
roles_asigned: any;
|
|
38
|
+
terminals_asigned: any;
|
|
39
|
+
}
|
|
@@ -0,0 +1,187 @@
|
|
|
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.UserInformation = 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 UserInformation = /** @class */ (function () {
|
|
30
|
+
function UserInformation() {
|
|
31
|
+
}
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.ViewColumn)(),
|
|
34
|
+
__metadata("design:type", Number)
|
|
35
|
+
], UserInformation.prototype, "id", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.ViewColumn)(),
|
|
38
|
+
__metadata("design:type", Number)
|
|
39
|
+
], UserInformation.prototype, "company", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, typeorm_1.ViewColumn)(),
|
|
42
|
+
__metadata("design:type", String)
|
|
43
|
+
], UserInformation.prototype, "code", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, typeorm_1.ViewColumn)(),
|
|
46
|
+
__metadata("design:type", String)
|
|
47
|
+
], UserInformation.prototype, "document", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, typeorm_1.ViewColumn)(),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], UserInformation.prototype, "name", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, typeorm_1.ViewColumn)(),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], UserInformation.prototype, "surname", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, typeorm_1.ViewColumn)(),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], UserInformation.prototype, "email", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, typeorm_1.ViewColumn)(),
|
|
62
|
+
__metadata("design:type", String)
|
|
63
|
+
], UserInformation.prototype, "phone", void 0);
|
|
64
|
+
__decorate([
|
|
65
|
+
(0, typeorm_1.ViewColumn)(),
|
|
66
|
+
__metadata("design:type", Number)
|
|
67
|
+
], UserInformation.prototype, "city", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, typeorm_1.ViewColumn)(),
|
|
70
|
+
__metadata("design:type", String)
|
|
71
|
+
], UserInformation.prototype, "address", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, typeorm_1.ViewColumn)(),
|
|
74
|
+
__metadata("design:type", String)
|
|
75
|
+
], UserInformation.prototype, "password", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
78
|
+
__metadata("design:type", Object)
|
|
79
|
+
], UserInformation.prototype, "profile", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, typeorm_1.ViewColumn)(),
|
|
82
|
+
__metadata("design:type", Number)
|
|
83
|
+
], UserInformation.prototype, "owner", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
86
|
+
__metadata("design:type", String)
|
|
87
|
+
], UserInformation.prototype, "created", void 0);
|
|
88
|
+
__decorate([
|
|
89
|
+
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
90
|
+
__metadata("design:type", String)
|
|
91
|
+
], UserInformation.prototype, "updated", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
(0, typeorm_1.ViewColumn)(),
|
|
94
|
+
__metadata("design:type", Number)
|
|
95
|
+
], UserInformation.prototype, "status", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
(0, typeorm_1.ViewColumn)(),
|
|
98
|
+
__metadata("design:type", Number)
|
|
99
|
+
], UserInformation.prototype, "visible", void 0);
|
|
100
|
+
__decorate([
|
|
101
|
+
(0, typeorm_1.ViewColumn)(),
|
|
102
|
+
__metadata("design:type", Number)
|
|
103
|
+
], UserInformation.prototype, "region", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
(0, typeorm_1.ViewColumn)(),
|
|
106
|
+
__metadata("design:type", String)
|
|
107
|
+
], UserInformation.prototype, "name_city", void 0);
|
|
108
|
+
__decorate([
|
|
109
|
+
(0, typeorm_1.ViewColumn)(),
|
|
110
|
+
__metadata("design:type", Number)
|
|
111
|
+
], UserInformation.prototype, "status_city", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
(0, typeorm_1.ViewColumn)(),
|
|
114
|
+
__metadata("design:type", String)
|
|
115
|
+
], UserInformation.prototype, "code_company", void 0);
|
|
116
|
+
__decorate([
|
|
117
|
+
(0, typeorm_1.ViewColumn)(),
|
|
118
|
+
__metadata("design:type", String)
|
|
119
|
+
], UserInformation.prototype, "name_company", void 0);
|
|
120
|
+
__decorate([
|
|
121
|
+
(0, typeorm_1.ViewColumn)(),
|
|
122
|
+
__metadata("design:type", Number)
|
|
123
|
+
], UserInformation.prototype, "city_company", void 0);
|
|
124
|
+
__decorate([
|
|
125
|
+
(0, typeorm_1.ViewColumn)(),
|
|
126
|
+
__metadata("design:type", Number)
|
|
127
|
+
], UserInformation.prototype, "partner", void 0);
|
|
128
|
+
__decorate([
|
|
129
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
130
|
+
__metadata("design:type", Object)
|
|
131
|
+
], UserInformation.prototype, "profile_company", void 0);
|
|
132
|
+
__decorate([
|
|
133
|
+
(0, typeorm_1.ViewColumn)(),
|
|
134
|
+
__metadata("design:type", Number)
|
|
135
|
+
], UserInformation.prototype, "quantity_locals", void 0);
|
|
136
|
+
__decorate([
|
|
137
|
+
(0, typeorm_1.ViewColumn)(),
|
|
138
|
+
__metadata("design:type", Number)
|
|
139
|
+
], UserInformation.prototype, "quantity_users", void 0);
|
|
140
|
+
__decorate([
|
|
141
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
142
|
+
__metadata("design:type", Object)
|
|
143
|
+
], UserInformation.prototype, "legal_information", void 0);
|
|
144
|
+
__decorate([
|
|
145
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
146
|
+
__metadata("design:type", Object)
|
|
147
|
+
], UserInformation.prototype, "legal_agent", void 0);
|
|
148
|
+
__decorate([
|
|
149
|
+
(0, typeorm_1.ViewColumn)(),
|
|
150
|
+
__metadata("design:type", Number)
|
|
151
|
+
], UserInformation.prototype, "plan", void 0);
|
|
152
|
+
__decorate([
|
|
153
|
+
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
154
|
+
__metadata("design:type", String)
|
|
155
|
+
], UserInformation.prototype, "created_company", void 0);
|
|
156
|
+
__decorate([
|
|
157
|
+
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
158
|
+
__metadata("design:type", String)
|
|
159
|
+
], UserInformation.prototype, "expiration_company", void 0);
|
|
160
|
+
__decorate([
|
|
161
|
+
(0, typeorm_1.ViewColumn)({ transformer: DateTransformer }),
|
|
162
|
+
__metadata("design:type", String)
|
|
163
|
+
], UserInformation.prototype, "updated_company", void 0);
|
|
164
|
+
__decorate([
|
|
165
|
+
(0, typeorm_1.ViewColumn)(),
|
|
166
|
+
__metadata("design:type", Number)
|
|
167
|
+
], UserInformation.prototype, "status_company", void 0);
|
|
168
|
+
__decorate([
|
|
169
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
170
|
+
__metadata("design:type", Object)
|
|
171
|
+
], UserInformation.prototype, "locals_asigned", void 0);
|
|
172
|
+
__decorate([
|
|
173
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
174
|
+
__metadata("design:type", Object)
|
|
175
|
+
], UserInformation.prototype, "roles_asigned", void 0);
|
|
176
|
+
__decorate([
|
|
177
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
178
|
+
__metadata("design:type", Object)
|
|
179
|
+
], UserInformation.prototype, "terminals_asigned", void 0);
|
|
180
|
+
UserInformation = __decorate([
|
|
181
|
+
(0, typeorm_1.ViewEntity)({
|
|
182
|
+
name: "user_information",
|
|
183
|
+
})
|
|
184
|
+
], UserInformation);
|
|
185
|
+
return UserInformation;
|
|
186
|
+
}());
|
|
187
|
+
exports.UserInformation = UserInformation;
|
package/package.json
CHANGED
|
@@ -47,6 +47,7 @@ export { ReassignReview } from './entities/ReassignReview'
|
|
|
47
47
|
export { LocalsCompany } from './views/LocalsCompany'
|
|
48
48
|
export { VerifyLocals } from './views/VerifyLocals'
|
|
49
49
|
export { MasterNotifications } from './views/MasterNotifications'
|
|
50
|
+
export { UserInformation } from './views/UserInformation';
|
|
50
51
|
|
|
51
52
|
export { CustomRepository } from './CustomRepository'
|
|
52
53
|
export * from './utils'
|
|
@@ -0,0 +1,135 @@
|
|
|
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: "user_information",
|
|
22
|
+
})
|
|
23
|
+
export class UserInformation {
|
|
24
|
+
@ViewColumn()
|
|
25
|
+
id: number;
|
|
26
|
+
|
|
27
|
+
@ViewColumn()
|
|
28
|
+
company: number;
|
|
29
|
+
|
|
30
|
+
@ViewColumn()
|
|
31
|
+
code: string;
|
|
32
|
+
|
|
33
|
+
@ViewColumn()
|
|
34
|
+
document: string;
|
|
35
|
+
|
|
36
|
+
@ViewColumn()
|
|
37
|
+
name: string;
|
|
38
|
+
|
|
39
|
+
@ViewColumn()
|
|
40
|
+
surname: string;
|
|
41
|
+
|
|
42
|
+
@ViewColumn()
|
|
43
|
+
email: string;
|
|
44
|
+
|
|
45
|
+
@ViewColumn()
|
|
46
|
+
phone: string;
|
|
47
|
+
|
|
48
|
+
@ViewColumn()
|
|
49
|
+
city: number;
|
|
50
|
+
|
|
51
|
+
@ViewColumn()
|
|
52
|
+
address: string;
|
|
53
|
+
|
|
54
|
+
@ViewColumn()
|
|
55
|
+
password: string;
|
|
56
|
+
|
|
57
|
+
@ViewColumn({transformer: jsonTransformer})
|
|
58
|
+
profile: any;
|
|
59
|
+
|
|
60
|
+
@ViewColumn()
|
|
61
|
+
owner: number;
|
|
62
|
+
|
|
63
|
+
@ViewColumn({transformer: DateTransformer})
|
|
64
|
+
created: string;
|
|
65
|
+
|
|
66
|
+
@ViewColumn({transformer: DateTransformer})
|
|
67
|
+
updated: string;
|
|
68
|
+
|
|
69
|
+
@ViewColumn()
|
|
70
|
+
status: number;
|
|
71
|
+
|
|
72
|
+
@ViewColumn()
|
|
73
|
+
visible: number;
|
|
74
|
+
|
|
75
|
+
@ViewColumn()
|
|
76
|
+
region: number;
|
|
77
|
+
|
|
78
|
+
@ViewColumn()
|
|
79
|
+
name_city: string;
|
|
80
|
+
|
|
81
|
+
@ViewColumn()
|
|
82
|
+
status_city: number;
|
|
83
|
+
|
|
84
|
+
@ViewColumn()
|
|
85
|
+
code_company: string;
|
|
86
|
+
|
|
87
|
+
@ViewColumn()
|
|
88
|
+
name_company: string;
|
|
89
|
+
|
|
90
|
+
@ViewColumn()
|
|
91
|
+
city_company: number;
|
|
92
|
+
|
|
93
|
+
@ViewColumn()
|
|
94
|
+
partner: number;
|
|
95
|
+
|
|
96
|
+
@ViewColumn({transformer: jsonTransformer})
|
|
97
|
+
profile_company: any;
|
|
98
|
+
|
|
99
|
+
@ViewColumn()
|
|
100
|
+
quantity_locals: number;
|
|
101
|
+
|
|
102
|
+
@ViewColumn()
|
|
103
|
+
quantity_users: number;
|
|
104
|
+
|
|
105
|
+
@ViewColumn({transformer: jsonTransformer})
|
|
106
|
+
legal_information: any;
|
|
107
|
+
|
|
108
|
+
@ViewColumn({transformer: jsonTransformer})
|
|
109
|
+
legal_agent: any;
|
|
110
|
+
|
|
111
|
+
@ViewColumn()
|
|
112
|
+
plan: number;
|
|
113
|
+
|
|
114
|
+
@ViewColumn({transformer: DateTransformer})
|
|
115
|
+
created_company: string;
|
|
116
|
+
|
|
117
|
+
@ViewColumn({transformer: DateTransformer})
|
|
118
|
+
expiration_company: string
|
|
119
|
+
|
|
120
|
+
@ViewColumn({transformer: DateTransformer})
|
|
121
|
+
updated_company: string
|
|
122
|
+
|
|
123
|
+
@ViewColumn()
|
|
124
|
+
status_company: number
|
|
125
|
+
|
|
126
|
+
@ViewColumn({transformer: jsonTransformer})
|
|
127
|
+
locals_asigned: any
|
|
128
|
+
|
|
129
|
+
@ViewColumn({transformer: jsonTransformer})
|
|
130
|
+
roles_asigned: any
|
|
131
|
+
|
|
132
|
+
@ViewColumn({transformer: jsonTransformer})
|
|
133
|
+
terminals_asigned: any
|
|
134
|
+
|
|
135
|
+
}
|