@hugo.ye/common 1.0.101 → 1.0.102
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.
|
@@ -11,12 +11,6 @@ export declare class CopyrightRegistrationEntity extends AbstractEntity<Copyrigh
|
|
|
11
11
|
processingSpeed: string;
|
|
12
12
|
localAttorneyFeeTire: string;
|
|
13
13
|
service: string;
|
|
14
|
-
requestDeferment: boolean;
|
|
15
|
-
drawingsService: boolean;
|
|
16
|
-
changeItem: string;
|
|
17
|
-
changeNewInformation: string;
|
|
18
|
-
assignor: string;
|
|
19
|
-
assignee: string;
|
|
20
14
|
remark: string;
|
|
21
15
|
order: Relation<OrderEntity>;
|
|
22
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"copyright-registration.entity.d.ts","sourceRoot":"","sources":["../../src/models/copyright-registration.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAE7C,OAAO,EAAwC,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAC;AAC9E,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"copyright-registration.entity.d.ts","sourceRoot":"","sources":["../../src/models/copyright-registration.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAE7C,OAAO,EAAwC,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAC;AAC9E,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE1C,qBAKa,2BAA4B,SAAQ,cAAc,CAAC,2BAA2B,CAAC;IAG1F,MAAM,EAAE,MAAM,CAAC;IAIf,yBAAyB,EAAE,MAAM,CAAC;IAIlC,cAAc,EAAE,MAAM,CAAC;IAIvB,MAAM,EAAE,MAAM,CAAC;IAIf,YAAY,EAAE,IAAI,CAAC;IAInB,iBAAiB,EAAE,MAAM,CAAC;IAI1B,eAAe,EAAE,MAAM,CAAC;IAIxB,oBAAoB,EAAE,MAAM,CAAC;IAI7B,OAAO,EAAE,MAAM,CAAC;IAIhB,MAAM,EAAE,MAAM,CAAC;IAMf,KAAK,EAAE,QAAQ,CAAC,WAAW,CAAC,CAAC;CAC9B"}
|
|
@@ -11,7 +11,6 @@ import { AbstractEntity } from '../index.js';
|
|
|
11
11
|
import { Directive, Field, ObjectType } from '@nestjs/graphql';
|
|
12
12
|
import { Column, Entity, JoinColumn, OneToOne } from 'typeorm';
|
|
13
13
|
import { OrderEntity } from './index.js';
|
|
14
|
-
import { Type } from 'class-transformer';
|
|
15
14
|
let CopyrightRegistrationEntity = class CopyrightRegistrationEntity extends AbstractEntity {
|
|
16
15
|
number; // 注册号,新申请时生成
|
|
17
16
|
guidelinesAndRequirements; // 申请指南和要求
|
|
@@ -22,16 +21,6 @@ let CopyrightRegistrationEntity = class CopyrightRegistrationEntity extends Abst
|
|
|
22
21
|
processingSpeed; // 处理速度:标准递交(Standard Filing),加急/优先(Expedited Priority)
|
|
23
22
|
localAttorneyFeeTire; // 本地律师服务费等级,Optimal Bid(最优竞标), Direct Filing(直接递交),Standard Service(标准服务)
|
|
24
23
|
service; // 服务项目:软件(Software)/App = (SA), 美术(Art)、设计(Design)、Logo(Logo) = (ADL) ,文学(Literary) /媒体(Media) = LM
|
|
25
|
-
requestDeferment; // 请求延时公开
|
|
26
|
-
drawingsService; // 专业绘图服务
|
|
27
|
-
// 著录项目变更 ======
|
|
28
|
-
changeItem; // 变更项目:名称(name),地址(address),设计人(designer)
|
|
29
|
-
changeNewInformation; // 新信息
|
|
30
|
-
// 著录项目变更============
|
|
31
|
-
// 转让 ==========
|
|
32
|
-
assignor; // 转让人
|
|
33
|
-
assignee; // 受让人
|
|
34
|
-
// 转让 ==========
|
|
35
24
|
remark; // 备注 / 特别说明
|
|
36
25
|
order;
|
|
37
26
|
};
|
|
@@ -80,36 +69,6 @@ __decorate([
|
|
|
80
69
|
Field(),
|
|
81
70
|
__metadata("design:type", String)
|
|
82
71
|
], CopyrightRegistrationEntity.prototype, "service", void 0);
|
|
83
|
-
__decorate([
|
|
84
|
-
Column({ default: false }),
|
|
85
|
-
Field({ defaultValue: false }),
|
|
86
|
-
__metadata("design:type", Boolean)
|
|
87
|
-
], CopyrightRegistrationEntity.prototype, "requestDeferment", void 0);
|
|
88
|
-
__decorate([
|
|
89
|
-
Column({ default: false }),
|
|
90
|
-
Field({ defaultValue: false }),
|
|
91
|
-
__metadata("design:type", Boolean)
|
|
92
|
-
], CopyrightRegistrationEntity.prototype, "drawingsService", void 0);
|
|
93
|
-
__decorate([
|
|
94
|
-
Column({ nullable: true }),
|
|
95
|
-
Field({ nullable: true }),
|
|
96
|
-
__metadata("design:type", String)
|
|
97
|
-
], CopyrightRegistrationEntity.prototype, "changeItem", void 0);
|
|
98
|
-
__decorate([
|
|
99
|
-
Column({ nullable: true }),
|
|
100
|
-
Field({ nullable: true }),
|
|
101
|
-
__metadata("design:type", String)
|
|
102
|
-
], CopyrightRegistrationEntity.prototype, "changeNewInformation", void 0);
|
|
103
|
-
__decorate([
|
|
104
|
-
Column({ nullable: true }),
|
|
105
|
-
Field({ nullable: true }),
|
|
106
|
-
__metadata("design:type", String)
|
|
107
|
-
], CopyrightRegistrationEntity.prototype, "assignor", void 0);
|
|
108
|
-
__decorate([
|
|
109
|
-
Column({ nullable: true }),
|
|
110
|
-
Field({ nullable: true }),
|
|
111
|
-
__metadata("design:type", String)
|
|
112
|
-
], CopyrightRegistrationEntity.prototype, "assignee", void 0);
|
|
113
72
|
__decorate([
|
|
114
73
|
Column({ nullable: true }),
|
|
115
74
|
Field({ nullable: true }),
|
|
@@ -125,7 +84,7 @@ __decorate([
|
|
|
125
84
|
CopyrightRegistrationEntity = __decorate([
|
|
126
85
|
Entity(),
|
|
127
86
|
ObjectType(),
|
|
128
|
-
Directive('@key(fields:"id,number,guidelinesAndRequirements,titleOfTheWork,author,creationDate,publicationStatus,processingSpeed,localAttorneyFeeTire,service,
|
|
87
|
+
Directive('@key(fields:"id,number,guidelinesAndRequirements,titleOfTheWork,author,creationDate,publicationStatus,processingSpeed,localAttorneyFeeTire,service,remark")')
|
|
129
88
|
], CopyrightRegistrationEntity);
|
|
130
89
|
export { CopyrightRegistrationEntity };
|
|
131
90
|
//# sourceMappingURL=copyright-registration.entity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"copyright-registration.entity.js","sourceRoot":"","sources":["../../src/models/copyright-registration.entity.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAiB,MAAM,SAAS,CAAC;AAC9E,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"copyright-registration.entity.js","sourceRoot":"","sources":["../../src/models/copyright-registration.entity.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAiB,MAAM,SAAS,CAAC;AAC9E,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAOnC,IAAM,2BAA2B,GAAjC,MAAM,2BAA4B,SAAQ,cAA2C;IAG1F,MAAM,CAAS,CAAC,aAAa;IAI7B,yBAAyB,CAAS,CAAC,UAAU;IAI7C,cAAc,CAAS,CAAC,OAAO;IAI/B,MAAM,CAAS,CAAC,SAAS;IAIzB,YAAY,CAAO,CAAC,OAAO;IAI3B,iBAAiB,CAAS,CAAC,uCAAuC;IAIlE,eAAe,CAAS,CAAC,uDAAuD;IAIhF,oBAAoB,CAAS,CAAC,0EAA0E;IAIxG,OAAO,CAAS,CAAC,oGAAoG;IAIrH,MAAM,CAAS,CAAC,YAAY;IAM5B,KAAK,CAAwB;CAC9B,CAAA;AA3CC;IAFC,MAAM,EAAE;IACR,KAAK,EAAE;;2DACO;AAIf;IAFC,MAAM,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC1B,KAAK,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8EACQ;AAIlC;IAFC,MAAM,EAAE;IACR,KAAK,EAAE;;mEACe;AAIvB;IAFC,MAAM,EAAE;IACR,KAAK,EAAE;;2DACO;AAIf;IAFC,MAAM,EAAE;IACR,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC;8BACJ,IAAI;iEAAC;AAInB;IAFC,MAAM,EAAE;IACR,KAAK,EAAE;;sEACkB;AAI1B;IAFC,MAAM,EAAE;IACR,KAAK,EAAE;;oEACgB;AAIxB;IAFC,MAAM,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,kBAAkB,EAAE,CAAC;IACvD,KAAK,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,EAAE,kBAAkB,EAAE,CAAC;;yEAC/B;AAI7B;IAFC,MAAM,EAAE;IACR,KAAK,EAAE;;4DACQ;AAIhB;IAFC,MAAM,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC1B,KAAK,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2DACX;AAMf;IAJC,QAAQ,CAAC,GAAG,EAAE,CAAC,WAAW,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,qBAAqB,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACvF,KAAK,CAAC,GAAG,EAAE,CAAC,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC5C,UAAU,EAAE;IACZ,SAAS,CAAC,YAAY,CAAC;;0DACK;AA7ClB,2BAA2B;IALvC,MAAM,EAAE;IACR,UAAU,EAAE;IACZ,SAAS,CACR,6JAA6J,CAC9J;GACY,2BAA2B,CA8CvC"}
|