| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- declare namespace API_DICT_TYPE {
- namespace P {
- interface IAdd {
- id: ID
- /**
- * 描述
- */
- description: string
- /**
- * 类型
- */
- dictType: string
- /**
- * 备注
- */
- remarks: string
- }
- }
- namespace R {
- interface IPage {
- /**
- * 创建人
- */
- createBy: string
- /**
- * 创建时间
- */
- createTime: string
- /**
- * 描述
- */
- description: string
- /**
- * 类型
- */
- dictType: string
- id: string
- /**
- * 备注
- */
- remarks: string
- /**
- * 修改人
- */
- updateBy: string
- /**
- * 更新时间
- */
- updateTime: string
- }
- }
- }
- declare namespace API_DICT {
- namespace P {
- interface IAdd {
- id: string
- dictId: string
- label: string
- dictType: string
- description: string
- sortOrder: number
- createBy: string
- updateBy: string
- createTime: string
- updateTime: string
- remarks: string
- delFlag: string
- itemValue: string
- }
- interface IPage {
- dictId: ID
- }
- }
- namespace R {
- interface IPage {
- id: string
- dictId: string
- label: string
- dictType: string
- description: string
- sortOrder: number
- createBy: string
- updateBy: string
- createTime: string
- updateTime: string
- remarks: string
- delFlag: string
- value: string
- }
- }
- }
- declare namespace API_PARAM {
- namespace P {
- interface IAdd {
- /**
- * 键
- */
- publicKey: string
- /**
- * 名称
- */
- publicName: string
- /**
- * 类型,0未知,1系统,2业务
- */
- publicType: string
- /**
- * 值
- */
- publicValue: string
- /**
- * 系统标识,0非系统,1系统
- */
- systemFlag: string
- /**
- * 校验码
- */
- validateCode: string
- }
- interface IPage {
- /**
- * 键
- */
- publicKey: string
- /**
- * 名称
- */
- publicName: string
- }
- }
- namespace R {
- interface IPage {
- /**
- * 创建人
- */
- createBy: string
- /**
- * 创建时间
- */
- createTime: string
- /**
- * 删除标记,0未删除,1已删除
- */
- delFlag: string
- /**
- * 编号
- */
- id: number
- /**
- * 键
- */
- publicKey: string
- /**
- * 名称
- */
- publicName: string
- /**
- * 类型,0未知,1系统,2业务
- */
- publicType: string
- /**
- * 值
- */
- publicValue: string
- /**
- * 状态,0禁用,1启用
- */
- status: string
- /**
- * 系统标识,0非系统,1系统
- */
- systemFlag: string
- /**
- * 修改人
- */
- updateBy: string
- /**
- * 更新时间
- */
- updateTime: string
- /**
- * 校验码
- */
- validateCode: string
- }
- }
- }
- declare namespace API_LOG {
- namespace P {
- interface IPage {
- /**
- * 创建人
- */
- createBy: string
- /**
- * 创建时间
- */
- createTime: string
- /**
- * 请求方法
- */
- method: string
- /**
- * 日志标题
- */
- title: string
- /**
- * 修改人
- */
- updateBy: string
- /**
- * 更新时间
- */
- updateTime: string
- }
- }
- namespace R {
- interface IPage {
- /**
- * 创建人
- */
- createBy: string
- /**
- * 创建时间
- */
- createTime: string
- /**
- * 删除标志
- */
- delFlag: string
- /**
- * 编号
- */
- id: number
- /**
- * 日志类型
- */
- logType: string
- /**
- * 请求方法
- */
- method: string
- /**
- * 远程地址
- */
- remoteAddr: string
- /**
- * 请求URI
- */
- requestUri: string
- /**
- * 服务ID
- */
- serviceId: string
- /**
- * 执行时间
- */
- time: number
- /**
- * 日志标题
- */
- title: string
- /**
- * 修改人
- */
- updateBy: string
- /**
- * 更新时间
- */
- updateTime: string
- }
- }
- }
|