公告板
版本库
filestore
活动
搜索
登录
王立忠
/
966120Api
派生自
966120Api
概况
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
fix: 修复客户提交的订单类型,如果传的是0,替换为1
wzp
2025-05-21
e6d10b40cf08fb35a73552aa4f0d2e9ac0b227df
[~wlz/966120Api.git]
/
ruoyi-common
/
src
/
main
/
java
/
com
/
ruoyi
/
common
/
enums
/
OperatorType.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.common.enums;
/**
* 操作人类别
*
* @author ruoyi
*/
public enum OperatorType
{
/**
* 其它
*/
OTHER,
/**
* 后台用户
*/
MANAGE,
/**
* 手机端用户
*/
MOBILE
}