| | |
| | | ip?: string; |
| | | ad_info?: AD_INFO; |
| | | ORG_CODE: string; |
| | | PROD_CODE: string; |
| | | }; |
| | | |
| | | export type AccountParams = BasicPageParams & { |
| | |
| | | isExt: string; |
| | | isUpdate: boolean; |
| | | show: string; |
| | | btnType: number; |
| | | }; |
| | | |
| | | export type SaveRoleParams = { |
| | |
| | | export interface iSYS_ROLE_ORG { |
| | | ROLE_CODE: string; |
| | | ORG_CODE: string; |
| | | HALF_CHECK: string; |
| | | } |
| | | |
| | | export interface iSYS_ROLE_PROD { |
| | | ROLE_CODE: string; |
| | | PROD_CODE: string; |
| | | HALF_CHECK: string; |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | /** |
| | | * @description: 自定义弹出框参数类型 |
| | | * @return {*} |
| | | */ |
| | | export interface CustModalParams { |
| | | cType: string; //类型 |
| | | values: {}; //Modal框内表单数据 |
| | | mValues: {}; //主表数据 |
| | | initFnName: string; //初始化方法名 |
| | | others: {}; //一些其他数据 |
| | | FnName: string; //自定义方法名 |
| | | } |
| | | |
| | | /** |
| | | * @description: Request list return value |
| | | */ |
| | | |