@ningboyz/types 1.0.189 → 1.0.191
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/package.json
CHANGED
|
@@ -167,3 +167,6 @@ export const CONST_SYS_TYPEU_上城财政_密级 = "上城财政-密级";
|
|
|
167
167
|
export const CONST_SYS_TYPEU_上城财政_紧急程度 = "上城财政-紧急程度";
|
|
168
168
|
export const CONST_SYS_TYPEU_上城财政_信息公开项 = "上城财政-信息公开项";
|
|
169
169
|
export const CONST_SYS_TYPEU_资产状态_固定资产 = "资产状态-固定资产";
|
|
170
|
+
|
|
171
|
+
export const CONST_SYS_TYPEU_公章管理_公章类型 = "公章管理-公章类型";
|
|
172
|
+
export const CONST_SYS_TYPEU_公章管理_文件类型 = "公章管理-文件类型";
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
export interface IUnitResponseElemPara {
|
|
1
|
+
export interface IUnitResponseElemPara {
|
|
2
|
+
/** 签章的特殊id以及secret */
|
|
3
|
+
signProjectId: string;
|
|
4
|
+
signProjectSecret: string;
|
|
5
|
+
}
|
|
2
6
|
|
|
3
|
-
export class TUnitResponseElemPara implements IUnitResponseElemPara {
|
|
7
|
+
export class TUnitResponseElemPara implements IUnitResponseElemPara {
|
|
8
|
+
/** 签章的特殊id以及secret */
|
|
9
|
+
signProjectId: string = "";
|
|
10
|
+
signProjectSecret: string = "";
|
|
11
|
+
}
|