新增:erp、erp-spi

This commit is contained in:
小久哥
2022-05-26 14:40:32 +08:00
parent 7b742c1701
commit 94eb1b7141
419 changed files with 72184 additions and 1 deletions
@@ -0,0 +1,30 @@
package com.zsw.enums;
/**
* 用户类型枚举
*
* @author xggz <yyimba@qq.com>
* @since 2021/6/17 15:24
*/
public enum UserType {
/**
* 小程序用户
*/
MINI,
/**
* 商家账号
*/
BUSINESS,
/**
* 平台管理账号
*/
PLATFORM_ADMIN,
/**
* 平台App账号
*/
PLATFORM_APP;
}