adtec-core-package 0.3.3 → 0.3.5
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/README.en.md +36 -36
- package/package.json +58 -56
- package/src/api/BasicApi.ts +17 -17
- package/src/api/DocumentApi.ts +18 -18
- package/src/api/SysDictCacheApi.ts +26 -26
- package/src/api/SysUserApi.ts +35 -35
- package/src/api/framework.ts +12 -12
- package/src/assets/style/ant.scss +19 -19
- package/src/assets/style/index.less +180 -180
- package/src/components/ElFlex/ElFlex.vue +297 -297
- package/src/components/Search/ElSearch.vue +154 -154
- package/src/components/Table/ElTableColumnEdit.vue +218 -218
- package/src/components/Title/ElTitle.vue +49 -49
- package/src/components/autoToolTip/ElAutoToolTip.vue +61 -61
- package/src/components/baseEcharts/index.vue +48 -0
- package/src/components/business/userSelect.vue +412 -412
- package/src/components/upload/FileView.vue +158 -158
- package/src/components/upload/FileViewComponents.vue +57 -57
- package/src/config/ElementPlusConfig.ts +95 -95
- package/src/css/elementUI/autocomplete.scss +89 -89
- package/src/css/elementUI/common/var.scss +1549 -1549
- package/src/css/elementUI/date-picker/picker.scss +219 -219
- package/src/css/elementUI/drawer.scss +164 -164
- package/src/css/elementUI/table.scss +694 -694
- package/src/css/elementUI/tabs.scss +659 -659
- package/src/directives/vKeydown.ts +93 -93
- package/src/hooks/useDictHooks.ts +76 -76
- package/src/hooks/useEcharts.ts +58 -0
- package/src/hooks/useFileView.ts +34 -34
- package/src/hooks/useMessageHooks.ts +132 -132
- package/src/hooks/useResetRefHooks.ts +18 -18
- package/src/interface/BaseEntity.ts +28 -28
- package/src/interface/IMdmDept.ts +82 -82
- package/src/interface/IOrgDeptInfo.ts +12 -12
- package/src/interface/ISysDictDataCacheVo.ts +46 -46
- package/src/interface/ISysDictType.ts +37 -37
- package/src/interface/ISysMenuDataVo.ts +22 -22
- package/src/interface/ISysMenuInfoVo.ts +83 -83
- package/src/interface/ISysMenuOperationVo.ts +21 -21
- package/src/interface/ISysUploadFiles.ts +16 -16
- package/src/interface/ISysUserInfo.ts +70 -70
- package/src/interface/IUserPermissionVo.ts +34 -34
- package/src/interface/Message.ts +69 -69
- package/src/interface/PageData.ts +17 -17
- package/src/interface/ResponseData.ts +16 -16
- package/src/interface/dictMapType.ts +11 -11
- package/src/interface/enum/MessageEnum.ts +41 -41
- package/src/mixin/globalMixin.ts +4 -1
- package/src/packages/index.ts +18 -18
- package/src/packages/text.vue +13 -13
- package/src/plugins/echartsConfig.ts +73 -0
- package/src/plugins/plugins.ts +12 -12
- package/src/stores/dictStore.ts +20 -20
- package/src/stores/messageStore.ts +49 -49
- package/src/stores/storeConfig.ts +23 -23
- package/src/stores/userInfoStore.ts +31 -31
- package/src/utils/AxiosConfig.ts +216 -216
|
@@ -1,132 +1,132 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Create by丁盼
|
|
3
|
-
* 说明: useMessageHooks
|
|
4
|
-
* 创建时间: 2024/9/3 下午5:27
|
|
5
|
-
* 修改时间: 2024/9/3 下午5:27
|
|
6
|
-
*/
|
|
7
|
-
//@ts-ignore
|
|
8
|
-
import io from 'socket.io-client'
|
|
9
|
-
import type { ISysMessageVo } from '../interface/Message'
|
|
10
|
-
import { messageStore } from '../stores/messageStore'
|
|
11
|
-
import { ElMessage, ElNotification } from 'element-plus'
|
|
12
|
-
import { useEventBus } from '@vueuse/core'
|
|
13
|
-
export default function useMessageHooks() {
|
|
14
|
-
// @ts-ignore
|
|
15
|
-
const connect = () => {
|
|
16
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
window.socketIo.connect()
|
|
19
|
-
}
|
|
20
|
-
const bus = useEventBus<ISysMessageVo>('messageClick')
|
|
21
|
-
const message = messageStore()
|
|
22
|
-
const createSocket = () => {
|
|
23
|
-
const socket = io(import.meta.env.VITE_SOCKETIO_URL, {
|
|
24
|
-
query: {
|
|
25
|
-
token: sessionStorage.getItem('Authorization'),
|
|
26
|
-
refreshToken: sessionStorage.getItem('refreshToken'),
|
|
27
|
-
sessionId: sessionStorage.getItem('sessionId'),
|
|
28
|
-
},
|
|
29
|
-
path: '/socket.io/',
|
|
30
|
-
transports: ['websocket', 'polling'],
|
|
31
|
-
autoConnect: false,
|
|
32
|
-
})
|
|
33
|
-
|
|
34
|
-
const server_response = (res: any) => {}
|
|
35
|
-
socket.off('server_response', server_response)
|
|
36
|
-
socket.on('server_response', server_response)
|
|
37
|
-
const connect = () => {
|
|
38
|
-
message.clearSysMessage()
|
|
39
|
-
//连接成功 获取离线数据UserExpireMessageOnEvent
|
|
40
|
-
socket.emit('UserExpireMessageOnEvent')
|
|
41
|
-
}
|
|
42
|
-
socket.off('connect', connect)
|
|
43
|
-
socket.on('connect', connect)
|
|
44
|
-
socket.on('user_Offline', () => {
|
|
45
|
-
console.log('user offline')
|
|
46
|
-
ElMessage.warning('您已被强制下线,即将跳转至登录页,请重新登录')
|
|
47
|
-
setTimeout(() => {
|
|
48
|
-
window.location.href = '/'
|
|
49
|
-
}, 2000)
|
|
50
|
-
})
|
|
51
|
-
|
|
52
|
-
const message_accept = (res: ISysMessageVo) => {
|
|
53
|
-
// if (res.params) {
|
|
54
|
-
// res.params = JSON.parse(res.params + '')
|
|
55
|
-
// }
|
|
56
|
-
let messageType = '通知'
|
|
57
|
-
if (res.messageType === 1) {
|
|
58
|
-
messageType = '消息'
|
|
59
|
-
} else if (res.messageType === 2) {
|
|
60
|
-
messageType = '待办'
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
const notif = ElNotification({
|
|
64
|
-
duration: 2000,
|
|
65
|
-
dangerouslyUseHTMLString: true,
|
|
66
|
-
onClick: () => {
|
|
67
|
-
bus.emit(res)
|
|
68
|
-
notif.close()
|
|
69
|
-
},
|
|
70
|
-
title: messageType,
|
|
71
|
-
message: res.title,
|
|
72
|
-
})
|
|
73
|
-
message.setSysMessage(res)
|
|
74
|
-
}
|
|
75
|
-
socket.off('message_accept', message_accept)
|
|
76
|
-
socket.on('message_accept', message_accept)
|
|
77
|
-
const expire_Message = (res: ISysMessageVo[]) => {
|
|
78
|
-
res.forEach((item) => {
|
|
79
|
-
message.setSysMessage(item)
|
|
80
|
-
})
|
|
81
|
-
}
|
|
82
|
-
socket.off('expire_Message', expire_Message)
|
|
83
|
-
socket.on('expire_Message', expire_Message)
|
|
84
|
-
//@ts-ignore
|
|
85
|
-
window.socketIo = socket
|
|
86
|
-
}
|
|
87
|
-
/**
|
|
88
|
-
* 接收方法注册
|
|
89
|
-
*/
|
|
90
|
-
const registerResponseEvent = (eventName: string, event: Function) => {
|
|
91
|
-
//@ts-ignore
|
|
92
|
-
window.socketIo.on(eventName, event)
|
|
93
|
-
}
|
|
94
|
-
const close = () => {
|
|
95
|
-
//@ts-ignore
|
|
96
|
-
window.socketIo.close()
|
|
97
|
-
message.clearSysMessage()
|
|
98
|
-
}
|
|
99
|
-
/**
|
|
100
|
-
* 消息发送
|
|
101
|
-
* @param msg
|
|
102
|
-
*/
|
|
103
|
-
const messageSend = (msg: ISysMessageVo) => {
|
|
104
|
-
//@ts-ignore
|
|
105
|
-
window.socketIo.emit('messageSend', JSON.stringify(msg))
|
|
106
|
-
}
|
|
107
|
-
/**
|
|
108
|
-
* 设置消息已读
|
|
109
|
-
* @constructor
|
|
110
|
-
*/
|
|
111
|
-
const setMessageRead = (msg: ISysMessageVo) => {
|
|
112
|
-
//@ts-ignore
|
|
113
|
-
window.socketIo.emit('setMessageRead', JSON.stringify(msg))
|
|
114
|
-
message.setSysMessageStatus(msg)
|
|
115
|
-
}
|
|
116
|
-
const setMessageReadAll = () => {
|
|
117
|
-
message.getMessageList.forEach((item) => {
|
|
118
|
-
//@ts-ignore
|
|
119
|
-
window.socketIo.emit('setMessageRead', JSON.stringify(item))
|
|
120
|
-
})
|
|
121
|
-
message.clearSysMessage()
|
|
122
|
-
}
|
|
123
|
-
return {
|
|
124
|
-
close,
|
|
125
|
-
connect,
|
|
126
|
-
createSocket,
|
|
127
|
-
messageSend,
|
|
128
|
-
registerResponseEvent,
|
|
129
|
-
setMessageRead,
|
|
130
|
-
setMessageReadAll,
|
|
131
|
-
}
|
|
132
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* Create by丁盼
|
|
3
|
+
* 说明: useMessageHooks
|
|
4
|
+
* 创建时间: 2024/9/3 下午5:27
|
|
5
|
+
* 修改时间: 2024/9/3 下午5:27
|
|
6
|
+
*/
|
|
7
|
+
//@ts-ignore
|
|
8
|
+
import io from 'socket.io-client'
|
|
9
|
+
import type { ISysMessageVo } from '../interface/Message'
|
|
10
|
+
import { messageStore } from '../stores/messageStore'
|
|
11
|
+
import { ElMessage, ElNotification } from 'element-plus'
|
|
12
|
+
import { useEventBus } from '@vueuse/core'
|
|
13
|
+
export default function useMessageHooks() {
|
|
14
|
+
// @ts-ignore
|
|
15
|
+
const connect = () => {
|
|
16
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
window.socketIo.connect()
|
|
19
|
+
}
|
|
20
|
+
const bus = useEventBus<ISysMessageVo>('messageClick')
|
|
21
|
+
const message = messageStore()
|
|
22
|
+
const createSocket = () => {
|
|
23
|
+
const socket = io(import.meta.env.VITE_SOCKETIO_URL, {
|
|
24
|
+
query: {
|
|
25
|
+
token: sessionStorage.getItem('Authorization'),
|
|
26
|
+
refreshToken: sessionStorage.getItem('refreshToken'),
|
|
27
|
+
sessionId: sessionStorage.getItem('sessionId'),
|
|
28
|
+
},
|
|
29
|
+
path: '/socket.io/',
|
|
30
|
+
transports: ['websocket', 'polling'],
|
|
31
|
+
autoConnect: false,
|
|
32
|
+
})
|
|
33
|
+
|
|
34
|
+
const server_response = (res: any) => {}
|
|
35
|
+
socket.off('server_response', server_response)
|
|
36
|
+
socket.on('server_response', server_response)
|
|
37
|
+
const connect = () => {
|
|
38
|
+
message.clearSysMessage()
|
|
39
|
+
//连接成功 获取离线数据UserExpireMessageOnEvent
|
|
40
|
+
socket.emit('UserExpireMessageOnEvent')
|
|
41
|
+
}
|
|
42
|
+
socket.off('connect', connect)
|
|
43
|
+
socket.on('connect', connect)
|
|
44
|
+
socket.on('user_Offline', () => {
|
|
45
|
+
console.log('user offline')
|
|
46
|
+
ElMessage.warning('您已被强制下线,即将跳转至登录页,请重新登录')
|
|
47
|
+
setTimeout(() => {
|
|
48
|
+
window.location.href = '/'
|
|
49
|
+
}, 2000)
|
|
50
|
+
})
|
|
51
|
+
|
|
52
|
+
const message_accept = (res: ISysMessageVo) => {
|
|
53
|
+
// if (res.params) {
|
|
54
|
+
// res.params = JSON.parse(res.params + '')
|
|
55
|
+
// }
|
|
56
|
+
let messageType = '通知'
|
|
57
|
+
if (res.messageType === 1) {
|
|
58
|
+
messageType = '消息'
|
|
59
|
+
} else if (res.messageType === 2) {
|
|
60
|
+
messageType = '待办'
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
const notif = ElNotification({
|
|
64
|
+
duration: 2000,
|
|
65
|
+
dangerouslyUseHTMLString: true,
|
|
66
|
+
onClick: () => {
|
|
67
|
+
bus.emit(res)
|
|
68
|
+
notif.close()
|
|
69
|
+
},
|
|
70
|
+
title: messageType,
|
|
71
|
+
message: res.title,
|
|
72
|
+
})
|
|
73
|
+
message.setSysMessage(res)
|
|
74
|
+
}
|
|
75
|
+
socket.off('message_accept', message_accept)
|
|
76
|
+
socket.on('message_accept', message_accept)
|
|
77
|
+
const expire_Message = (res: ISysMessageVo[]) => {
|
|
78
|
+
res.forEach((item) => {
|
|
79
|
+
message.setSysMessage(item)
|
|
80
|
+
})
|
|
81
|
+
}
|
|
82
|
+
socket.off('expire_Message', expire_Message)
|
|
83
|
+
socket.on('expire_Message', expire_Message)
|
|
84
|
+
//@ts-ignore
|
|
85
|
+
window.socketIo = socket
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* 接收方法注册
|
|
89
|
+
*/
|
|
90
|
+
const registerResponseEvent = (eventName: string, event: Function) => {
|
|
91
|
+
//@ts-ignore
|
|
92
|
+
window.socketIo.on(eventName, event)
|
|
93
|
+
}
|
|
94
|
+
const close = () => {
|
|
95
|
+
//@ts-ignore
|
|
96
|
+
window.socketIo.close()
|
|
97
|
+
message.clearSysMessage()
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* 消息发送
|
|
101
|
+
* @param msg
|
|
102
|
+
*/
|
|
103
|
+
const messageSend = (msg: ISysMessageVo) => {
|
|
104
|
+
//@ts-ignore
|
|
105
|
+
window.socketIo.emit('messageSend', JSON.stringify(msg))
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* 设置消息已读
|
|
109
|
+
* @constructor
|
|
110
|
+
*/
|
|
111
|
+
const setMessageRead = (msg: ISysMessageVo) => {
|
|
112
|
+
//@ts-ignore
|
|
113
|
+
window.socketIo.emit('setMessageRead', JSON.stringify(msg))
|
|
114
|
+
message.setSysMessageStatus(msg)
|
|
115
|
+
}
|
|
116
|
+
const setMessageReadAll = () => {
|
|
117
|
+
message.getMessageList.forEach((item) => {
|
|
118
|
+
//@ts-ignore
|
|
119
|
+
window.socketIo.emit('setMessageRead', JSON.stringify(item))
|
|
120
|
+
})
|
|
121
|
+
message.clearSysMessage()
|
|
122
|
+
}
|
|
123
|
+
return {
|
|
124
|
+
close,
|
|
125
|
+
connect,
|
|
126
|
+
createSocket,
|
|
127
|
+
messageSend,
|
|
128
|
+
registerResponseEvent,
|
|
129
|
+
setMessageRead,
|
|
130
|
+
setMessageReadAll,
|
|
131
|
+
}
|
|
132
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { type Ref, ref } from 'vue'
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 创建人 胡啸东
|
|
5
|
-
* 说明: 用于重置对象
|
|
6
|
-
* 创建时间: 2024/12/18 下午3:57
|
|
7
|
-
* 修改时间: 2024/12/18 下午3:57
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
export function useResetRefHooks<T>(value: T): [Ref<T>, () => void] {
|
|
11
|
-
const initValue = JSON.parse(JSON.stringify(value))
|
|
12
|
-
const state = ref(value)
|
|
13
|
-
const reset = () => {
|
|
14
|
-
state.value = JSON.parse(JSON.stringify(initValue))
|
|
15
|
-
}
|
|
16
|
-
//@ts-ignore
|
|
17
|
-
return [state, reset]
|
|
18
|
-
}
|
|
1
|
+
import { type Ref, ref } from 'vue'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 创建人 胡啸东
|
|
5
|
+
* 说明: 用于重置对象
|
|
6
|
+
* 创建时间: 2024/12/18 下午3:57
|
|
7
|
+
* 修改时间: 2024/12/18 下午3:57
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export function useResetRefHooks<T>(value: T): [Ref<T>, () => void] {
|
|
11
|
+
const initValue = JSON.parse(JSON.stringify(value))
|
|
12
|
+
const state = ref(value)
|
|
13
|
+
const reset = () => {
|
|
14
|
+
state.value = JSON.parse(JSON.stringify(initValue))
|
|
15
|
+
}
|
|
16
|
+
//@ts-ignore
|
|
17
|
+
return [state, reset]
|
|
18
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 创建人 胡啸东
|
|
3
|
-
* 说明: BaseEntity
|
|
4
|
-
* 创建时间: 2024/12/16 上午10:33
|
|
5
|
-
* 修改时间: 2024/12/16 上午10:33
|
|
6
|
-
*/
|
|
7
|
-
export interface BaseEntity {
|
|
8
|
-
// 创建者
|
|
9
|
-
createBy?: string
|
|
10
|
-
|
|
11
|
-
// 创建时间,使用Date类型来模拟对应的时间值,注意在TypeScript中处理日期相关操作可能需要借助额外的库,比如moment.js等
|
|
12
|
-
createTime?: string
|
|
13
|
-
|
|
14
|
-
// 更新者
|
|
15
|
-
updateBy?: string
|
|
16
|
-
|
|
17
|
-
// 更新时间
|
|
18
|
-
updateTime?: string
|
|
19
|
-
|
|
20
|
-
// 删除标志(0代表存在 2代表删除),使用number类型来模拟整数
|
|
21
|
-
isDelete?: '1' | '0'
|
|
22
|
-
|
|
23
|
-
// 更新者名字,该字段在数据库表结构对应的映射中不存在(exist = false),仅在代码逻辑中有使用
|
|
24
|
-
updateByName?: string
|
|
25
|
-
|
|
26
|
-
// 创建者名字,同样该字段在数据库表结构对应的映射中不存在(exist = false),仅在代码逻辑中有使用
|
|
27
|
-
createByName?: string
|
|
28
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* 创建人 胡啸东
|
|
3
|
+
* 说明: BaseEntity
|
|
4
|
+
* 创建时间: 2024/12/16 上午10:33
|
|
5
|
+
* 修改时间: 2024/12/16 上午10:33
|
|
6
|
+
*/
|
|
7
|
+
export interface BaseEntity {
|
|
8
|
+
// 创建者
|
|
9
|
+
createBy?: string
|
|
10
|
+
|
|
11
|
+
// 创建时间,使用Date类型来模拟对应的时间值,注意在TypeScript中处理日期相关操作可能需要借助额外的库,比如moment.js等
|
|
12
|
+
createTime?: string
|
|
13
|
+
|
|
14
|
+
// 更新者
|
|
15
|
+
updateBy?: string
|
|
16
|
+
|
|
17
|
+
// 更新时间
|
|
18
|
+
updateTime?: string
|
|
19
|
+
|
|
20
|
+
// 删除标志(0代表存在 2代表删除),使用number类型来模拟整数
|
|
21
|
+
isDelete?: '1' | '0'
|
|
22
|
+
|
|
23
|
+
// 更新者名字,该字段在数据库表结构对应的映射中不存在(exist = false),仅在代码逻辑中有使用
|
|
24
|
+
updateByName?: string
|
|
25
|
+
|
|
26
|
+
// 创建者名字,同样该字段在数据库表结构对应的映射中不存在(exist = false),仅在代码逻辑中有使用
|
|
27
|
+
createByName?: string
|
|
28
|
+
}
|
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
import type { IpageDataQuery } from './PageData.ts'
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 创建人 胡啸东
|
|
5
|
-
* 说明: Isss
|
|
6
|
-
* 创建时间: 2024/11/22 上午11:28
|
|
7
|
-
* 修改时间: 2024/11/22 上午11:28
|
|
8
|
-
*/
|
|
9
|
-
export interface IMdmDept extends IpageDataQuery {
|
|
10
|
-
/**
|
|
11
|
-
* 主键id
|
|
12
|
-
*/
|
|
13
|
-
id?: string
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* 排序号 自增长,可修改
|
|
17
|
-
*/
|
|
18
|
-
orderNum?: string
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* 父部门id
|
|
22
|
-
*/
|
|
23
|
-
parentId?: string
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* 部门编码
|
|
27
|
-
*/
|
|
28
|
-
code?: string
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* 部门名称
|
|
32
|
-
*/
|
|
33
|
-
name?: string
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* 部门简称
|
|
37
|
-
*/
|
|
38
|
-
shortName?: string
|
|
39
|
-
|
|
40
|
-
/**
|
|
41
|
-
* 部门类别 存部门类别字典“SysDeptClass”的值。
|
|
42
|
-
*/
|
|
43
|
-
deptClass?: string
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* 部门性质 存部门性质字典“SysDeptNature”的值。
|
|
47
|
-
*/
|
|
48
|
-
deptNature?: string
|
|
49
|
-
|
|
50
|
-
/**
|
|
51
|
-
* 是否有效 1=是,0=否。
|
|
52
|
-
*/
|
|
53
|
-
isValid?: string
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* 组织id
|
|
57
|
-
*/
|
|
58
|
-
mdmOrgId?: string
|
|
59
|
-
|
|
60
|
-
// 是否删除,1=是,0=否。
|
|
61
|
-
isDelete?: string
|
|
62
|
-
|
|
63
|
-
// 创建者
|
|
64
|
-
createBy?: string
|
|
65
|
-
|
|
66
|
-
// 创建者
|
|
67
|
-
createByName?: string
|
|
68
|
-
|
|
69
|
-
// 创建时间
|
|
70
|
-
createTime?: string
|
|
71
|
-
|
|
72
|
-
// 更新者
|
|
73
|
-
updateBy?: string
|
|
74
|
-
|
|
75
|
-
// 更新时间
|
|
76
|
-
updateTime?: string
|
|
77
|
-
|
|
78
|
-
// 更新者
|
|
79
|
-
updateByName?: string
|
|
80
|
-
|
|
81
|
-
level?: string
|
|
82
|
-
}
|
|
1
|
+
import type { IpageDataQuery } from './PageData.ts'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 创建人 胡啸东
|
|
5
|
+
* 说明: Isss
|
|
6
|
+
* 创建时间: 2024/11/22 上午11:28
|
|
7
|
+
* 修改时间: 2024/11/22 上午11:28
|
|
8
|
+
*/
|
|
9
|
+
export interface IMdmDept extends IpageDataQuery {
|
|
10
|
+
/**
|
|
11
|
+
* 主键id
|
|
12
|
+
*/
|
|
13
|
+
id?: string
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* 排序号 自增长,可修改
|
|
17
|
+
*/
|
|
18
|
+
orderNum?: string
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* 父部门id
|
|
22
|
+
*/
|
|
23
|
+
parentId?: string
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* 部门编码
|
|
27
|
+
*/
|
|
28
|
+
code?: string
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* 部门名称
|
|
32
|
+
*/
|
|
33
|
+
name?: string
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* 部门简称
|
|
37
|
+
*/
|
|
38
|
+
shortName?: string
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* 部门类别 存部门类别字典“SysDeptClass”的值。
|
|
42
|
+
*/
|
|
43
|
+
deptClass?: string
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* 部门性质 存部门性质字典“SysDeptNature”的值。
|
|
47
|
+
*/
|
|
48
|
+
deptNature?: string
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* 是否有效 1=是,0=否。
|
|
52
|
+
*/
|
|
53
|
+
isValid?: string
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* 组织id
|
|
57
|
+
*/
|
|
58
|
+
mdmOrgId?: string
|
|
59
|
+
|
|
60
|
+
// 是否删除,1=是,0=否。
|
|
61
|
+
isDelete?: string
|
|
62
|
+
|
|
63
|
+
// 创建者
|
|
64
|
+
createBy?: string
|
|
65
|
+
|
|
66
|
+
// 创建者
|
|
67
|
+
createByName?: string
|
|
68
|
+
|
|
69
|
+
// 创建时间
|
|
70
|
+
createTime?: string
|
|
71
|
+
|
|
72
|
+
// 更新者
|
|
73
|
+
updateBy?: string
|
|
74
|
+
|
|
75
|
+
// 更新时间
|
|
76
|
+
updateTime?: string
|
|
77
|
+
|
|
78
|
+
// 更新者
|
|
79
|
+
updateByName?: string
|
|
80
|
+
|
|
81
|
+
level?: string
|
|
82
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import type { IMdmDept } from './IMdmDept.ts'
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 创建人 胡啸东
|
|
5
|
-
* 说明: Isss
|
|
6
|
-
* 创建时间: 2024/11/22 上午11:28
|
|
7
|
-
* 修改时间: 2024/11/22 上午11:28
|
|
8
|
-
*/
|
|
9
|
-
export interface IOrgDeptInfo extends IMdmDept {
|
|
10
|
-
children?: IOrgDeptInfo[]
|
|
11
|
-
remark?: string
|
|
12
|
-
}
|
|
1
|
+
import type { IMdmDept } from './IMdmDept.ts'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 创建人 胡啸东
|
|
5
|
+
* 说明: Isss
|
|
6
|
+
* 创建时间: 2024/11/22 上午11:28
|
|
7
|
+
* 修改时间: 2024/11/22 上午11:28
|
|
8
|
+
*/
|
|
9
|
+
export interface IOrgDeptInfo extends IMdmDept {
|
|
10
|
+
children?: IOrgDeptInfo[]
|
|
11
|
+
remark?: string
|
|
12
|
+
}
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Create by丁盼
|
|
3
|
-
* 说明: ISysDictDataCacheVo
|
|
4
|
-
* 创建时间: 2025/1/14 20:40
|
|
5
|
-
* 修改时间: 2025/1/14 20:40
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
* Create by丁盼
|
|
9
|
-
* 说明: ISysDictDataCacheVo
|
|
10
|
-
* 创建时间: 2024/11/3 上午9:08
|
|
11
|
-
* 修改时间: 2024/11/3 上午9:08
|
|
12
|
-
*/
|
|
13
|
-
export interface ISysDictDataCacheVo {
|
|
14
|
-
// 字典编码,对应原Java代码中的 @TableId注解的字段,这里假设在TypeScript环境中它就是一个普通的字符串类型主键
|
|
15
|
-
id: string
|
|
16
|
-
|
|
17
|
-
// 排序号,排序号自增长且可修改,为整数类型
|
|
18
|
-
orderNum: string
|
|
19
|
-
|
|
20
|
-
typeCode: string
|
|
21
|
-
|
|
22
|
-
// 父字典ID,字符串类型
|
|
23
|
-
parentId?: string
|
|
24
|
-
|
|
25
|
-
// 字典标签,字符串类型
|
|
26
|
-
label: string
|
|
27
|
-
|
|
28
|
-
// 字典键值,字符串类型
|
|
29
|
-
value: string
|
|
30
|
-
|
|
31
|
-
// 备注,字符串类型
|
|
32
|
-
remark: string
|
|
33
|
-
|
|
34
|
-
// 是否默认,1表示是,0表示否,这里使用数字类型(也可根据具体需求定义为更明确的枚举类型等)
|
|
35
|
-
isDefault: string
|
|
36
|
-
|
|
37
|
-
// 是否有效,1表示是,0表示否,同样使用数字类型
|
|
38
|
-
isValid: string
|
|
39
|
-
|
|
40
|
-
// 字典类型表id,字符串类型
|
|
41
|
-
sysDictTypeId: string
|
|
42
|
-
/**
|
|
43
|
-
* 下级节点
|
|
44
|
-
*/
|
|
45
|
-
children?: ISysDictDataCacheVo[]
|
|
46
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* Create by丁盼
|
|
3
|
+
* 说明: ISysDictDataCacheVo
|
|
4
|
+
* 创建时间: 2025/1/14 20:40
|
|
5
|
+
* 修改时间: 2025/1/14 20:40
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* Create by丁盼
|
|
9
|
+
* 说明: ISysDictDataCacheVo
|
|
10
|
+
* 创建时间: 2024/11/3 上午9:08
|
|
11
|
+
* 修改时间: 2024/11/3 上午9:08
|
|
12
|
+
*/
|
|
13
|
+
export interface ISysDictDataCacheVo {
|
|
14
|
+
// 字典编码,对应原Java代码中的 @TableId注解的字段,这里假设在TypeScript环境中它就是一个普通的字符串类型主键
|
|
15
|
+
id: string
|
|
16
|
+
|
|
17
|
+
// 排序号,排序号自增长且可修改,为整数类型
|
|
18
|
+
orderNum: string
|
|
19
|
+
|
|
20
|
+
typeCode: string
|
|
21
|
+
|
|
22
|
+
// 父字典ID,字符串类型
|
|
23
|
+
parentId?: string
|
|
24
|
+
|
|
25
|
+
// 字典标签,字符串类型
|
|
26
|
+
label: string
|
|
27
|
+
|
|
28
|
+
// 字典键值,字符串类型
|
|
29
|
+
value: string
|
|
30
|
+
|
|
31
|
+
// 备注,字符串类型
|
|
32
|
+
remark: string
|
|
33
|
+
|
|
34
|
+
// 是否默认,1表示是,0表示否,这里使用数字类型(也可根据具体需求定义为更明确的枚举类型等)
|
|
35
|
+
isDefault: string
|
|
36
|
+
|
|
37
|
+
// 是否有效,1表示是,0表示否,同样使用数字类型
|
|
38
|
+
isValid: string
|
|
39
|
+
|
|
40
|
+
// 字典类型表id,字符串类型
|
|
41
|
+
sysDictTypeId: string
|
|
42
|
+
/**
|
|
43
|
+
* 下级节点
|
|
44
|
+
*/
|
|
45
|
+
children?: ISysDictDataCacheVo[]
|
|
46
|
+
}
|