完成用户书签管理的CRUD

This commit is contained in:
WangHao
2020-09-17 00:43:27 +08:00
parent cf70bbc008
commit b1d475f867
11 changed files with 287 additions and 8 deletions

View File

@ -0,0 +1,21 @@
package com.ruoyi.common.utils;
/**
* @Auther: Wang
* @Date: 2020/09/16 20:29
* 功能描述: 常用常量
*/
public class YunConstant {
/**
* 系统标签
*/
public static final String KEY_TAGS_SYSTEM="S";
/**
* 用户标签
*/
public static final String KEY_TAGS_PERSON="P";
}