/** * 系统管理-系统参数 */ import { BaseFormDTO, BusinessPO } from '../common/base' export interface SystemParameter extends BusinessPO { // 生效的环境 effectiveEnvironment: string // 系统参数唯一编号 parameterCode: string // 参数组编号 parameterGroup: string // 参数名称 parameterName: string // 参数值 parameterValue: string } export interface SystemParameterFormDTO extends BaseFormDTO { // 参数名称 parameterName?: string // 参数类型编号 parameterGroup?: string // 参数编号 parameterCode?: string // 参数值 parameterValue?: string // 生效环境 effectiveEnvironment?: string }