@silexpert/core 1.3.66-2 → 1.3.66-4
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/cjs/api/resources/Refund.d.ts +8 -0
- package/dist/cjs/api/resources/Refund.d.ts.map +1 -1
- package/dist/cjs/types/Interface/models/IRefund.d.ts +8 -0
- package/dist/cjs/types/Interface/models/IRefund.d.ts.map +1 -1
- package/dist/cjs/types/Interface/models/IRefund.js.map +1 -1
- package/dist/mjs/api/resources/Refund.d.ts +8 -0
- package/dist/mjs/api/resources/Refund.d.ts.map +1 -1
- package/dist/mjs/types/Interface/models/IRefund.d.ts +8 -0
- package/dist/mjs/types/Interface/models/IRefund.d.ts.map +1 -1
- package/dist/mjs/types/Interface/models/IRefund.js.map +1 -1
- package/package.json +1 -1
- package/ts/types/Interface/models/IRefund.ts +12 -0
|
@@ -10,17 +10,25 @@ export declare class Refund extends Resource {
|
|
|
10
10
|
amount?: number | null | undefined;
|
|
11
11
|
comment?: string | null | undefined;
|
|
12
12
|
refundDate?: Date | null | undefined;
|
|
13
|
+
refundAt?: string | null | undefined;
|
|
13
14
|
processed?: boolean | undefined;
|
|
14
15
|
isAmountChecked?: boolean | undefined;
|
|
15
16
|
idRefundMotif?: number | undefined;
|
|
16
17
|
idSociety?: number | undefined;
|
|
17
18
|
idUserDemand?: number | undefined;
|
|
19
|
+
refundBy?: number | null | undefined;
|
|
18
20
|
idFile?: number | null | undefined;
|
|
21
|
+
idUserAgreement?: number | null | undefined;
|
|
22
|
+
dateAgreement?: string | null | undefined;
|
|
23
|
+
exceptionalAgreement?: boolean | null | undefined;
|
|
24
|
+
agreement?: number | null | undefined;
|
|
19
25
|
createdAt?: (Date | null) | undefined;
|
|
20
26
|
updatedAt?: (Date | null) | undefined;
|
|
21
27
|
society?: import("../../types").ISociety | undefined;
|
|
22
28
|
file?: import("../../types").IFile | undefined;
|
|
23
29
|
userDemand?: import("../../types").IUser | undefined;
|
|
30
|
+
refundByUser?: import("../../types").IUser | undefined;
|
|
31
|
+
agreementUser?: import("../../types").IUser | undefined;
|
|
24
32
|
}>>;
|
|
25
33
|
delete(id: number): Promise<import("axios").AxiosResponse<never>>;
|
|
26
34
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Refund.d.ts","sourceRoot":"","sources":["../../../../ts/api/resources/Refund.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAE5D,qBAAa,MAAO,SAAQ,QAAQ;IAC3B,MAAM,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IAG1C,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC;IAI9D,MAAM,CAAC,KAAK,EAAE,oBAAoB;IAIlC,UAAU,CAAC,EAAE,EAAE,MAAM;IAIrB,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,OAAO,CAAC
|
|
1
|
+
{"version":3,"file":"Refund.d.ts","sourceRoot":"","sources":["../../../../ts/api/resources/Refund.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAE5D,qBAAa,MAAO,SAAQ,QAAQ;IAC3B,MAAM,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IAG1C,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC;IAI9D,MAAM,CAAC,KAAK,EAAE,oBAAoB;IAIlC,UAAU,CAAC,EAAE,EAAE,MAAM;IAIrB,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;IAI7C,MAAM,CAAC,EAAE,EAAE,MAAM;CAGzB"}
|
|
@@ -6,16 +6,24 @@ export interface IRefund {
|
|
|
6
6
|
amount: number | null;
|
|
7
7
|
comment: string | null;
|
|
8
8
|
refundDate: Date | null;
|
|
9
|
+
refundAt?: string | null;
|
|
9
10
|
processed: boolean;
|
|
10
11
|
isAmountChecked?: boolean;
|
|
11
12
|
idRefundMotif: number;
|
|
12
13
|
idSociety: number;
|
|
13
14
|
idUserDemand: number;
|
|
15
|
+
refundBy?: number | null;
|
|
14
16
|
idFile?: number | null;
|
|
17
|
+
idUserAgreement?: number | null;
|
|
18
|
+
dateAgreement?: string | null;
|
|
19
|
+
exceptionalAgreement?: boolean | null;
|
|
20
|
+
agreement?: number | null;
|
|
15
21
|
createdAt?: Date | null;
|
|
16
22
|
updatedAt?: Date | null;
|
|
17
23
|
society?: ISociety;
|
|
18
24
|
file?: IFile;
|
|
19
25
|
userDemand?: IUser;
|
|
26
|
+
refundByUser?: IUser;
|
|
27
|
+
agreementUser?: IUser;
|
|
20
28
|
}
|
|
21
29
|
//# sourceMappingURL=IRefund.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IRefund.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/models/IRefund.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAGhC,MAAM,WAAW,OAAO;IACtB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,UAAU,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,SAAS,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"IRefund.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/models/IRefund.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAGhC,MAAM,WAAW,OAAO;IACtB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,UAAU,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,SAAS,EAAE,OAAO,CAAC;IAEnB,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE9B,oBAAoB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACtC,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAGxB,OAAO,CAAC,EAAE,QAAQ,CAAC;IACnB,IAAI,CAAC,EAAE,KAAK,CAAC;IACb,UAAU,CAAC,EAAE,KAAK,CAAC;IACnB,YAAY,CAAC,EAAE,KAAK,CAAC;IACrB,aAAa,CAAC,EAAE,KAAK,CAAC;CACvB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IRefund.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/models/IRefund.ts"],"names":[],"mappings":"","sourcesContent":["import { ISociety } from './ISociety';\nimport { IFile } from './IFile';\nimport { IUser } from './IUser';\n\n// refunds\nexport interface IRefund {\n id?: number;\n amount: number | null;\n comment: string | null;\n refundDate: Date | null;\n processed: boolean;\n isAmountChecked?: boolean;\n idRefundMotif: number;\n idSociety: number;\n idUserDemand: number;\n idFile?: number | null; //non obligatoire désormais, utilisé avant pour rattacher le RIB\n createdAt?: Date | null;\n updatedAt?: Date | null;\n\n // Associations\n society?: ISociety;\n file?: IFile;\n userDemand?: IUser;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"IRefund.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/models/IRefund.ts"],"names":[],"mappings":"","sourcesContent":["import { ISociety } from './ISociety';\nimport { IFile } from './IFile';\nimport { IUser } from './IUser';\n\n// refunds\nexport interface IRefund {\n id?: number;\n amount: number | null;\n comment: string | null;\n refundDate: Date | null;\n refundAt?: string | null;\n processed: boolean;\n\n isAmountChecked?: boolean;\n\n idRefundMotif: number;\n idSociety: number;\n idUserDemand: number;\n refundBy?: number | null;\n idFile?: number | null; //non obligatoire désormais, utilisé avant pour rattacher le RIB\n idUserAgreement?: number | null;\n dateAgreement?: string | null;\n\n exceptionalAgreement?: boolean | null;\n agreement?: number | null;\n\n createdAt?: Date | null;\n updatedAt?: Date | null;\n\n // Associations\n society?: ISociety;\n file?: IFile;\n userDemand?: IUser;\n refundByUser?: IUser;\n agreementUser?: IUser;\n}\n"]}
|
|
@@ -10,17 +10,25 @@ export declare class Refund extends Resource {
|
|
|
10
10
|
amount?: number | null | undefined;
|
|
11
11
|
comment?: string | null | undefined;
|
|
12
12
|
refundDate?: Date | null | undefined;
|
|
13
|
+
refundAt?: string | null | undefined;
|
|
13
14
|
processed?: boolean | undefined;
|
|
14
15
|
isAmountChecked?: boolean | undefined;
|
|
15
16
|
idRefundMotif?: number | undefined;
|
|
16
17
|
idSociety?: number | undefined;
|
|
17
18
|
idUserDemand?: number | undefined;
|
|
19
|
+
refundBy?: number | null | undefined;
|
|
18
20
|
idFile?: number | null | undefined;
|
|
21
|
+
idUserAgreement?: number | null | undefined;
|
|
22
|
+
dateAgreement?: string | null | undefined;
|
|
23
|
+
exceptionalAgreement?: boolean | null | undefined;
|
|
24
|
+
agreement?: number | null | undefined;
|
|
19
25
|
createdAt?: (Date | null) | undefined;
|
|
20
26
|
updatedAt?: (Date | null) | undefined;
|
|
21
27
|
society?: import("../../types").ISociety | undefined;
|
|
22
28
|
file?: import("../../types").IFile | undefined;
|
|
23
29
|
userDemand?: import("../../types").IUser | undefined;
|
|
30
|
+
refundByUser?: import("../../types").IUser | undefined;
|
|
31
|
+
agreementUser?: import("../../types").IUser | undefined;
|
|
24
32
|
}>>;
|
|
25
33
|
delete(id: number): Promise<import("axios").AxiosResponse<never>>;
|
|
26
34
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Refund.d.ts","sourceRoot":"","sources":["../../../../ts/api/resources/Refund.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAE5D,qBAAa,MAAO,SAAQ,QAAQ;IAC3B,MAAM,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IAG1C,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC;IAI9D,MAAM,CAAC,KAAK,EAAE,oBAAoB;IAIlC,UAAU,CAAC,EAAE,EAAE,MAAM;IAIrB,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,OAAO,CAAC
|
|
1
|
+
{"version":3,"file":"Refund.d.ts","sourceRoot":"","sources":["../../../../ts/api/resources/Refund.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAE5D,qBAAa,MAAO,SAAQ,QAAQ;IAC3B,MAAM,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IAG1C,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC;IAI9D,MAAM,CAAC,KAAK,EAAE,oBAAoB;IAIlC,UAAU,CAAC,EAAE,EAAE,MAAM;IAIrB,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;IAI7C,MAAM,CAAC,EAAE,EAAE,MAAM;CAGzB"}
|
|
@@ -6,16 +6,24 @@ export interface IRefund {
|
|
|
6
6
|
amount: number | null;
|
|
7
7
|
comment: string | null;
|
|
8
8
|
refundDate: Date | null;
|
|
9
|
+
refundAt?: string | null;
|
|
9
10
|
processed: boolean;
|
|
10
11
|
isAmountChecked?: boolean;
|
|
11
12
|
idRefundMotif: number;
|
|
12
13
|
idSociety: number;
|
|
13
14
|
idUserDemand: number;
|
|
15
|
+
refundBy?: number | null;
|
|
14
16
|
idFile?: number | null;
|
|
17
|
+
idUserAgreement?: number | null;
|
|
18
|
+
dateAgreement?: string | null;
|
|
19
|
+
exceptionalAgreement?: boolean | null;
|
|
20
|
+
agreement?: number | null;
|
|
15
21
|
createdAt?: Date | null;
|
|
16
22
|
updatedAt?: Date | null;
|
|
17
23
|
society?: ISociety;
|
|
18
24
|
file?: IFile;
|
|
19
25
|
userDemand?: IUser;
|
|
26
|
+
refundByUser?: IUser;
|
|
27
|
+
agreementUser?: IUser;
|
|
20
28
|
}
|
|
21
29
|
//# sourceMappingURL=IRefund.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IRefund.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/models/IRefund.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAGhC,MAAM,WAAW,OAAO;IACtB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,UAAU,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,SAAS,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"IRefund.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/models/IRefund.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAGhC,MAAM,WAAW,OAAO;IACtB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,UAAU,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,SAAS,EAAE,OAAO,CAAC;IAEnB,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE9B,oBAAoB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACtC,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAGxB,OAAO,CAAC,EAAE,QAAQ,CAAC;IACnB,IAAI,CAAC,EAAE,KAAK,CAAC;IACb,UAAU,CAAC,EAAE,KAAK,CAAC;IACnB,YAAY,CAAC,EAAE,KAAK,CAAC;IACrB,aAAa,CAAC,EAAE,KAAK,CAAC;CACvB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IRefund.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/models/IRefund.ts"],"names":[],"mappings":"","sourcesContent":["import { ISociety } from './ISociety';\nimport { IFile } from './IFile';\nimport { IUser } from './IUser';\n\n// refunds\nexport interface IRefund {\n id?: number;\n amount: number | null;\n comment: string | null;\n refundDate: Date | null;\n processed: boolean;\n isAmountChecked?: boolean;\n idRefundMotif: number;\n idSociety: number;\n idUserDemand: number;\n idFile?: number | null; //non obligatoire désormais, utilisé avant pour rattacher le RIB\n createdAt?: Date | null;\n updatedAt?: Date | null;\n\n // Associations\n society?: ISociety;\n file?: IFile;\n userDemand?: IUser;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"IRefund.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/models/IRefund.ts"],"names":[],"mappings":"","sourcesContent":["import { ISociety } from './ISociety';\nimport { IFile } from './IFile';\nimport { IUser } from './IUser';\n\n// refunds\nexport interface IRefund {\n id?: number;\n amount: number | null;\n comment: string | null;\n refundDate: Date | null;\n refundAt?: string | null;\n processed: boolean;\n\n isAmountChecked?: boolean;\n\n idRefundMotif: number;\n idSociety: number;\n idUserDemand: number;\n refundBy?: number | null;\n idFile?: number | null; //non obligatoire désormais, utilisé avant pour rattacher le RIB\n idUserAgreement?: number | null;\n dateAgreement?: string | null;\n\n exceptionalAgreement?: boolean | null;\n agreement?: number | null;\n\n createdAt?: Date | null;\n updatedAt?: Date | null;\n\n // Associations\n society?: ISociety;\n file?: IFile;\n userDemand?: IUser;\n refundByUser?: IUser;\n agreementUser?: IUser;\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@silexpert/core",
|
|
3
|
-
"version": "1.3.66-
|
|
3
|
+
"version": "1.3.66-4",
|
|
4
4
|
"description": "Silex Core perform HTTP Request and object binding. Silex core helps developers to retrieve and return formatted object",
|
|
5
5
|
"homepage": "https://gitlab.compta-clementine.fr/dev/silex-api",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -8,12 +8,22 @@ export interface IRefund {
|
|
|
8
8
|
amount: number | null;
|
|
9
9
|
comment: string | null;
|
|
10
10
|
refundDate: Date | null;
|
|
11
|
+
refundAt?: string | null;
|
|
11
12
|
processed: boolean;
|
|
13
|
+
|
|
12
14
|
isAmountChecked?: boolean;
|
|
15
|
+
|
|
13
16
|
idRefundMotif: number;
|
|
14
17
|
idSociety: number;
|
|
15
18
|
idUserDemand: number;
|
|
19
|
+
refundBy?: number | null;
|
|
16
20
|
idFile?: number | null; //non obligatoire désormais, utilisé avant pour rattacher le RIB
|
|
21
|
+
idUserAgreement?: number | null;
|
|
22
|
+
dateAgreement?: string | null;
|
|
23
|
+
|
|
24
|
+
exceptionalAgreement?: boolean | null;
|
|
25
|
+
agreement?: number | null;
|
|
26
|
+
|
|
17
27
|
createdAt?: Date | null;
|
|
18
28
|
updatedAt?: Date | null;
|
|
19
29
|
|
|
@@ -21,4 +31,6 @@ export interface IRefund {
|
|
|
21
31
|
society?: ISociety;
|
|
22
32
|
file?: IFile;
|
|
23
33
|
userDemand?: IUser;
|
|
34
|
+
refundByUser?: IUser;
|
|
35
|
+
agreementUser?: IUser;
|
|
24
36
|
}
|