spartaxx.businessmodels 1.0.214 → 1.0.216
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/CCCTemplateData.ts
CHANGED
@@ -2,6 +2,7 @@ import { ClientInfo } from "./ClientInfo";
|
|
2
2
|
import { QualifiedClientInfo } from "./QualifiedClientInfo";
|
3
3
|
import { AppConfigHub } from "../Common/AppConfigHub";
|
4
4
|
import { RabbitMQQueueInfo } from "../Common/RabbitMQQueueInfo";
|
5
|
+
import { ClientPackageParam } from "./ClientPackageParam";
|
5
6
|
|
6
7
|
export interface CCCTemplateData {
|
7
8
|
QualifiedClientInfo?: QualifiedClientInfo;
|
@@ -9,4 +10,5 @@ export interface CCCTemplateData {
|
|
9
10
|
AppConfigHub?: AppConfigHub;
|
10
11
|
DocumentsTempPath?: string[];
|
11
12
|
RabbitMQQueueInfo?: RabbitMQQueueInfo;
|
13
|
+
ClientPackageParam?: ClientPackageParam;
|
12
14
|
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
|
2
|
+
import { ClientPackageDocument } from "./ClientPackageDocuments";
|
3
|
+
|
4
|
+
export interface ClientPackageParam {
|
5
|
+
ClientId?: number
|
6
|
+
AccountId?: number
|
7
|
+
PackageId?: string
|
8
|
+
LeadId?: number
|
9
|
+
ItIsbeforeClient?: boolean;
|
10
|
+
ToEmail?: string;
|
11
|
+
TeamplateId?: string;
|
12
|
+
DocumentList?: ClientPackageDocument[];
|
13
|
+
}
|
@@ -5,7 +5,7 @@ export interface ProtestAccountParam {
|
|
5
5
|
OffsetValue?: number;
|
6
6
|
FetchRecordsCounts?: number;
|
7
7
|
DatasetSortingOperation?: DatasetSortingOperation;
|
8
|
-
|
8
|
+
FilterList?: DatasetFilterOperation[];
|
9
9
|
ItIsFilterSearch?: boolean;
|
10
10
|
|
11
11
|
CountyId?: number;
|