改名
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package top.mes.admin.system.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import top.mes.admin.system.model.entity.ClientDO;
|
||||
import top.continew.starter.data.mp.base.BaseMapper;
|
||||
|
||||
@@ -9,5 +10,6 @@ import top.continew.starter.data.mp.base.BaseMapper;
|
||||
* @author KAI
|
||||
* @since 2024/12/03 16:04
|
||||
*/
|
||||
@Mapper
|
||||
public interface ClientMapper extends BaseMapper<ClientDO> {
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
package top.mes.admin.system.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import top.mes.admin.system.model.entity.DeptDO;
|
||||
import top.continew.starter.data.mp.base.BaseMapper;
|
||||
|
||||
@@ -9,5 +10,6 @@ import top.continew.starter.data.mp.base.BaseMapper;
|
||||
* @author Charles7c
|
||||
* @since 2023/1/22 17:56
|
||||
*/
|
||||
@Mapper
|
||||
public interface DeptMapper extends BaseMapper<DeptDO> {
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@ package top.mes.admin.system.mapper;
|
||||
|
||||
import com.alicp.jetcache.anno.Cached;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.springframework.stereotype.Repository;
|
||||
import top.mes.admin.common.constant.CacheConstants;
|
||||
import top.mes.admin.system.model.entity.DictItemDO;
|
||||
import top.continew.starter.data.mp.base.BaseMapper;
|
||||
@@ -15,6 +16,7 @@ import java.util.List;
|
||||
* @author Charles7c
|
||||
* @since 2023/9/11 21:29
|
||||
*/
|
||||
@Repository
|
||||
public interface DictItemMapper extends BaseMapper<DictItemDO> {
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package top.mes.admin.system.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import top.mes.admin.system.model.entity.DictDO;
|
||||
import top.continew.starter.data.mp.base.BaseMapper;
|
||||
|
||||
@@ -9,5 +10,6 @@ import top.continew.starter.data.mp.base.BaseMapper;
|
||||
* @author Charles7c
|
||||
* @since 2023/9/11 21:29
|
||||
*/
|
||||
@Mapper
|
||||
public interface DictMapper extends BaseMapper<DictDO> {
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
package top.mes.admin.system.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import top.mes.admin.system.model.entity.MenuDO;
|
||||
import top.continew.starter.data.mp.base.BaseMapper;
|
||||
@@ -13,6 +14,7 @@ import java.util.Set;
|
||||
* @author Charles7c
|
||||
* @since 2023/2/15 20:30
|
||||
*/
|
||||
@Mapper
|
||||
public interface MenuMapper extends BaseMapper<MenuDO> {
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package top.mes.admin.system.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.apache.ibatis.annotations.Select;
|
||||
import top.mes.admin.system.model.entity.RoleDeptDO;
|
||||
@@ -13,6 +14,7 @@ import java.util.List;
|
||||
* @author Charles7c
|
||||
* @since 2023/2/18 21:57
|
||||
*/
|
||||
@Mapper
|
||||
public interface RoleDeptMapper extends BaseMapper<RoleDeptDO> {
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package top.mes.admin.system.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import top.mes.admin.system.model.entity.RoleDO;
|
||||
import top.continew.starter.data.mp.base.BaseMapper;
|
||||
|
||||
@@ -9,5 +10,6 @@ import top.continew.starter.data.mp.base.BaseMapper;
|
||||
* @author Charles7c
|
||||
* @since 2023/2/8 23:17
|
||||
*/
|
||||
@Mapper
|
||||
public interface RoleMapper extends BaseMapper<RoleDO> {
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package top.mes.admin.system.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import top.mes.admin.system.model.entity.RoleMenuDO;
|
||||
import top.continew.starter.data.mp.base.BaseMapper;
|
||||
|
||||
@@ -11,6 +12,7 @@ import java.util.List;
|
||||
* @author Charles7c
|
||||
* @since 2023/2/15 20:30
|
||||
*/
|
||||
@Mapper
|
||||
public interface RoleMenuMapper extends BaseMapper<RoleMenuDO> {
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package top.mes.admin.system.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import top.mes.admin.system.model.entity.StorageDO;
|
||||
import top.continew.starter.data.mp.base.BaseMapper;
|
||||
|
||||
@@ -9,5 +10,6 @@ import top.continew.starter.data.mp.base.BaseMapper;
|
||||
* @author Charles7c
|
||||
* @since 2023/12/26 22:09
|
||||
*/
|
||||
@Mapper
|
||||
public interface StorageMapper extends BaseMapper<StorageDO> {
|
||||
}
|
||||
@@ -3,6 +3,7 @@ package top.mes.admin.system.mapper;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.core.toolkit.Constants;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.apache.ibatis.annotations.Select;
|
||||
import top.mes.admin.common.config.mybatis.DataPermissionMapper;
|
||||
@@ -19,6 +20,7 @@ import java.util.List;
|
||||
* @author Charles7c
|
||||
* @since 2022/12/22 21:47
|
||||
*/
|
||||
@Mapper
|
||||
public interface UserMapper extends DataPermissionMapper<UserDO> {
|
||||
|
||||
/**
|
||||
|
||||
@@ -3,6 +3,7 @@ package top.mes.admin.system.mapper;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.core.toolkit.Constants;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import top.mes.admin.system.model.entity.UserRoleDO;
|
||||
import top.mes.admin.system.model.resp.role.RoleUserResp;
|
||||
@@ -14,6 +15,7 @@ import top.continew.starter.data.mp.base.BaseMapper;
|
||||
* @author Charles7c
|
||||
* @since 2023/2/13 23:13
|
||||
*/
|
||||
@Mapper
|
||||
public interface UserRoleMapper extends BaseMapper<UserRoleDO> {
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package top.mes.admin.system.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import top.mes.admin.system.model.entity.UserSocialDO;
|
||||
import top.continew.starter.data.mp.base.BaseMapper;
|
||||
@@ -10,6 +11,7 @@ import top.continew.starter.data.mp.base.BaseMapper;
|
||||
* @author Charles7c
|
||||
* @since 2023/10/11 22:10
|
||||
*/
|
||||
@Mapper
|
||||
public interface UserSocialMapper extends BaseMapper<UserSocialDO> {
|
||||
|
||||
/**
|
||||
|
||||
@@ -77,7 +77,7 @@ public class StorageReq implements Serializable {
|
||||
/**
|
||||
* Bucket/存储路径
|
||||
*/
|
||||
@Schema(description = "Bucket/存储路径", example = "C:/wms-admin/data/file/")
|
||||
@Schema(description = "Bucket/存储路径", example = "C:/mes-admin/data/file/")
|
||||
@Length(max = 255, message = "Bucket长度不能超过 {max} 个字符", groups = ValidationGroup.Storage.OSS.class)
|
||||
@Length(max = 255, message = "存储路径长度不能超过 {max} 个字符", groups = ValidationGroup.Storage.Local.class)
|
||||
@NotBlank(message = "Bucket不能为空", groups = ValidationGroup.Storage.OSS.class)
|
||||
|
||||
@@ -68,7 +68,7 @@ public class StorageResp extends BaseDetailResp {
|
||||
/**
|
||||
* Bucket/存储路径
|
||||
*/
|
||||
@Schema(description = "Bucket/存储路径", example = "C:/wms-admin/data/file/")
|
||||
@Schema(description = "Bucket/存储路径", example = "C:/mes-admin/data/file/")
|
||||
private String bucketName;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user