@nger/fk-upload 1.0.213 → 1.0.214

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,4 @@
1
+ import { FkJiQun } from "./fk-jiqun";
1
2
  import { FkW7Account } from "./w7-account";
2
3
  export declare class FkCheckTask {
3
4
  id: number;
@@ -9,5 +10,7 @@ export declare class FkCheckTask {
9
10
  time: string;
10
11
  w7AccountId: number;
11
12
  w7Account: FkW7Account;
13
+ jiqunId: number;
14
+ jiqun: FkJiQun;
12
15
  deleteDate: Date;
13
16
  }
@@ -7,6 +7,7 @@ const rest_1 = require("@nger/rest");
7
7
  const typeorm_1 = require("@nger/typeorm");
8
8
  const typeorm_2 = require("typeorm");
9
9
  const check_service_1 = require("../services/check.service");
10
+ const fk_jiqun_1 = require("./fk-jiqun");
10
11
  const w7_account_1 = require("./w7-account");
11
12
  let FkCheckTask = FkCheckTask_1 = class FkCheckTask {
12
13
  id;
@@ -18,6 +19,8 @@ let FkCheckTask = FkCheckTask_1 = class FkCheckTask {
18
19
  time;
19
20
  w7AccountId;
20
21
  w7Account;
22
+ jiqunId;
23
+ jiqun;
21
24
  deleteDate;
22
25
  };
23
26
  tslib_1.__decorate([
@@ -160,6 +163,41 @@ tslib_1.__decorate([
160
163
  }),
161
164
  tslib_1.__metadata("design:type", w7_account_1.FkW7Account)
162
165
  ], FkCheckTask.prototype, "w7Account", void 0);
166
+ tslib_1.__decorate([
167
+ (0, rest_1.Widget)({
168
+ title: `执行者`,
169
+ path: 'jiqun.clientId',
170
+ width: '180px',
171
+ span: 24,
172
+ required: true,
173
+ widget: {
174
+ type: 'selector',
175
+ from: 'fk_ji_qun',
176
+ config: {
177
+ label: 'clientId',
178
+ value: 'id'
179
+ }
180
+ }
181
+ }),
182
+ (0, typeorm_2.Column)({
183
+ name: 'jiqun_id',
184
+ nullable: true
185
+ }),
186
+ tslib_1.__metadata("design:type", Number)
187
+ ], FkCheckTask.prototype, "jiqunId", void 0);
188
+ tslib_1.__decorate([
189
+ (0, rest_1.Widget)({
190
+ hideInAdd: true,
191
+ hideInEdit: true,
192
+ hideInSearch: true,
193
+ hideInTable: true
194
+ }),
195
+ (0, typeorm_2.ManyToOne)(() => fk_jiqun_1.FkJiQun),
196
+ (0, typeorm_2.JoinColumn)({
197
+ name: 'jiqun_id'
198
+ }),
199
+ tslib_1.__metadata("design:type", fk_jiqun_1.FkJiQun)
200
+ ], FkCheckTask.prototype, "jiqun", void 0);
163
201
  tslib_1.__decorate([
164
202
  (0, rest_1.Widget)({
165
203
  hideInAdd: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nger/fk-upload",
3
- "version": "1.0.213",
3
+ "version": "1.0.214",
4
4
  "description": "nger fk upload",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",