@ningboyz/types 1.7.26 → 1.7.27
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
|
@@ -59,6 +59,8 @@ export interface IDictResponseDictPara {
|
|
|
59
59
|
reduceReasonDict: boolean;
|
|
60
60
|
/** 是否人员调动后的人员职务类别的字典 */
|
|
61
61
|
userMovedDict: boolean;
|
|
62
|
+
/** 单位性质是否国有单位 */
|
|
63
|
+
isPublic: boolean;
|
|
62
64
|
}
|
|
63
65
|
export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
64
66
|
step: number = 0;
|
|
@@ -108,6 +110,8 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
|
108
110
|
reduceReasonDict: boolean = false;
|
|
109
111
|
/** 是否人员调动后的人员职务类别的字典 */
|
|
110
112
|
userMovedDict: boolean = false;
|
|
113
|
+
/** 单位性质是否国有单位 */
|
|
114
|
+
isPublic: boolean = false;
|
|
111
115
|
}
|
|
112
116
|
|
|
113
117
|
export interface IFormFieldObj {
|