Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.69
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
test /
dist /
modules /
states /
entities /
Delete
Unzip
Name
Size
Permission
Date
Action
state.entity.d.ts
244
B
-rw-rw-rw-
2025-03-22 07:46
state.entity.js
2.9
KB
-rw-rw-rw-
2025-03-22 07:46
state.entity.js.map
1.33
KB
-rw-rw-rw-
2025-03-22 07:46
Save
Rename
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); 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; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.State = void 0; const typeorm_1 = require("typeorm"); const swagger_1 = require("@nestjs/swagger"); const country_entity_1 = require("../../countries/entities/country.entity"); let State = class State { id; name; country_id; created_at; updated_at; deleted_at; country; }; exports.State = State; __decorate([ (0, swagger_1.ApiProperty)({ description: 'Unique identifier', example: '550e8400-e29b-41d4-a716-446655440000' }), (0, typeorm_1.PrimaryGeneratedColumn)('uuid'), __metadata("design:type", String) ], State.prototype, "id", void 0); __decorate([ (0, swagger_1.ApiProperty)({ description: 'Name of the state', example: 'Ontario' }), (0, typeorm_1.Column)({ nullable: false }), __metadata("design:type", String) ], State.prototype, "name", void 0); __decorate([ (0, swagger_1.ApiProperty)({ description: 'Country ID (foreign key)', example: '550e8400-e29b-41d4-a716-446655440001' }), (0, typeorm_1.Column)({ nullable: false }), __metadata("design:type", String) ], State.prototype, "country_id", void 0); __decorate([ (0, swagger_1.ApiProperty)({ description: 'Creation timestamp', example: '2025-03-14T12:00:00.000Z', required: false }), (0, typeorm_1.CreateDateColumn)(), __metadata("design:type", Date) ], State.prototype, "created_at", void 0); __decorate([ (0, swagger_1.ApiProperty)({ description: 'Update timestamp', example: '2025-03-14T12:00:00.000Z', required: false }), (0, typeorm_1.UpdateDateColumn)(), __metadata("design:type", Date) ], State.prototype, "updated_at", void 0); __decorate([ (0, swagger_1.ApiProperty)({ description: 'Deletion timestamp', example: null, required: false }), (0, typeorm_1.DeleteDateColumn)(), __metadata("design:type", Date) ], State.prototype, "deleted_at", void 0); __decorate([ (0, typeorm_1.ManyToOne)(() => country_entity_1.Country, (country) => country.id), __metadata("design:type", country_entity_1.Country) ], State.prototype, "country", void 0); exports.State = State = __decorate([ (0, typeorm_1.Entity)('states') ], State); //# sourceMappingURL=state.entity.js.map