feat: 登录授权接口
This commit is contained in:
@ -55,6 +55,9 @@
|
||||
<artifactId>lombok</artifactId>
|
||||
</path>
|
||||
</annotationProcessorPaths>
|
||||
<source>${java.version}</source>
|
||||
<target>${java.version}</target>
|
||||
<encoding>UTF-8</encoding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
||||
@ -0,0 +1,95 @@
|
||||
package day.gitlab.dolphin.core.controller;
|
||||
|
||||
import com.mybatisflex.core.paginate.Page;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import day.gitlab.dolphin.core.entity.Dictionary;
|
||||
import day.gitlab.dolphin.core.service.DictionaryService;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 字典 控制层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/dictionary")
|
||||
public class DictionaryController {
|
||||
|
||||
@Autowired
|
||||
private DictionaryService dictionaryService;
|
||||
|
||||
/**
|
||||
* 保存字典。
|
||||
*
|
||||
* @param dictionary 字典
|
||||
* @return {@code true} 保存成功,{@code false} 保存失败
|
||||
*/
|
||||
@PostMapping("save")
|
||||
public boolean save(@RequestBody Dictionary dictionary) {
|
||||
return dictionaryService.save(dictionary);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键删除字典。
|
||||
*
|
||||
* @param id 主键
|
||||
* @return {@code true} 删除成功,{@code false} 删除失败
|
||||
*/
|
||||
@DeleteMapping("remove/{id}")
|
||||
public boolean remove(@PathVariable String id) {
|
||||
return dictionaryService.removeById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键更新字典。
|
||||
*
|
||||
* @param dictionary 字典
|
||||
* @return {@code true} 更新成功,{@code false} 更新失败
|
||||
*/
|
||||
@PutMapping("update")
|
||||
public boolean update(@RequestBody Dictionary dictionary) {
|
||||
return dictionaryService.updateById(dictionary);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询所有字典。
|
||||
*
|
||||
* @return 所有数据
|
||||
*/
|
||||
@GetMapping("list")
|
||||
public List<Dictionary> list() {
|
||||
return dictionaryService.list();
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键获取字典。
|
||||
*
|
||||
* @param id 字典主键
|
||||
* @return 字典详情
|
||||
*/
|
||||
@GetMapping("getInfo/{id}")
|
||||
public Dictionary getInfo(@PathVariable String id) {
|
||||
return dictionaryService.getById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 分页查询字典。
|
||||
*
|
||||
* @param page 分页对象
|
||||
* @return 分页对象
|
||||
*/
|
||||
@GetMapping("page")
|
||||
public Page<Dictionary> page(Page<Dictionary> page) {
|
||||
return dictionaryService.page(page);
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,95 @@
|
||||
package day.gitlab.dolphin.core.controller;
|
||||
|
||||
import com.mybatisflex.core.paginate.Page;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import day.gitlab.dolphin.core.entity.DictionaryItem;
|
||||
import day.gitlab.dolphin.core.service.DictionaryItemService;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 字典项 控制层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/dictionaryItem")
|
||||
public class DictionaryItemController {
|
||||
|
||||
@Autowired
|
||||
private DictionaryItemService dictionaryItemService;
|
||||
|
||||
/**
|
||||
* 保存字典项。
|
||||
*
|
||||
* @param dictionaryItem 字典项
|
||||
* @return {@code true} 保存成功,{@code false} 保存失败
|
||||
*/
|
||||
@PostMapping("save")
|
||||
public boolean save(@RequestBody DictionaryItem dictionaryItem) {
|
||||
return dictionaryItemService.save(dictionaryItem);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键删除字典项。
|
||||
*
|
||||
* @param id 主键
|
||||
* @return {@code true} 删除成功,{@code false} 删除失败
|
||||
*/
|
||||
@DeleteMapping("remove/{id}")
|
||||
public boolean remove(@PathVariable String id) {
|
||||
return dictionaryItemService.removeById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键更新字典项。
|
||||
*
|
||||
* @param dictionaryItem 字典项
|
||||
* @return {@code true} 更新成功,{@code false} 更新失败
|
||||
*/
|
||||
@PutMapping("update")
|
||||
public boolean update(@RequestBody DictionaryItem dictionaryItem) {
|
||||
return dictionaryItemService.updateById(dictionaryItem);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询所有字典项。
|
||||
*
|
||||
* @return 所有数据
|
||||
*/
|
||||
@GetMapping("list")
|
||||
public List<DictionaryItem> list() {
|
||||
return dictionaryItemService.list();
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键获取字典项。
|
||||
*
|
||||
* @param id 字典项主键
|
||||
* @return 字典项详情
|
||||
*/
|
||||
@GetMapping("getInfo/{id}")
|
||||
public DictionaryItem getInfo(@PathVariable String id) {
|
||||
return dictionaryItemService.getById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 分页查询字典项。
|
||||
*
|
||||
* @param page 分页对象
|
||||
* @return 分页对象
|
||||
*/
|
||||
@GetMapping("page")
|
||||
public Page<DictionaryItem> page(Page<DictionaryItem> page) {
|
||||
return dictionaryItemService.page(page);
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,63 @@
|
||||
package day.gitlab.dolphin.core.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import java.io.Serializable;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 字典 实体类。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@Table("sys_core_dictionary")
|
||||
public class Dictionary implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@Id
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 字典名称
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 字典代码
|
||||
*/
|
||||
private String code;
|
||||
|
||||
/**
|
||||
* 字典类型: enum-枚举、tree-树型
|
||||
*/
|
||||
private String type;
|
||||
|
||||
/**
|
||||
* 字典描述
|
||||
*/
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Timestamp createTime;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
private Timestamp updateTime;
|
||||
|
||||
}
|
||||
@ -0,0 +1,73 @@
|
||||
package day.gitlab.dolphin.core.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import java.io.Serializable;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 字典项 实体类。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@Table("sys_core_dictionary_item")
|
||||
public class DictionaryItem implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@Id
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 字典ID
|
||||
*/
|
||||
private String dictionaryId;
|
||||
|
||||
/**
|
||||
* 父级ID,如果为空则为根节点
|
||||
*/
|
||||
private String parentId;
|
||||
|
||||
/**
|
||||
* 字典项名称
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 字典项代码
|
||||
*/
|
||||
private String code;
|
||||
|
||||
/**
|
||||
* 字典项排序,升序排列
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
/**
|
||||
* 字典项描述
|
||||
*/
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Timestamp createTime;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
private Timestamp updateTime;
|
||||
|
||||
}
|
||||
@ -0,0 +1,92 @@
|
||||
package day.gitlab.dolphin.core.entity.table;
|
||||
|
||||
import com.mybatisflex.core.query.QueryColumn;
|
||||
import com.mybatisflex.core.table.TableDef;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
/**
|
||||
* 字典项 表定义层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public class DictionaryItemTableDef extends TableDef {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 字典项
|
||||
*/
|
||||
public static final DictionaryItemTableDef DICTIONARY_ITEM = new DictionaryItemTableDef();
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
public final QueryColumn ID = new QueryColumn(this, "id");
|
||||
|
||||
/**
|
||||
* 字典项代码
|
||||
*/
|
||||
public final QueryColumn CODE = new QueryColumn(this, "code");
|
||||
|
||||
/**
|
||||
* 字典项名称
|
||||
*/
|
||||
public final QueryColumn NAME = new QueryColumn(this, "name");
|
||||
|
||||
/**
|
||||
* 字典项排序,升序排列
|
||||
*/
|
||||
public final QueryColumn SORT = new QueryColumn(this, "sort");
|
||||
|
||||
/**
|
||||
* 父级ID,如果为空则为根节点
|
||||
*/
|
||||
public final QueryColumn PARENT_ID = new QueryColumn(this, "parent_id");
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
public final QueryColumn CREATE_TIME = new QueryColumn(this, "create_time");
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
public final QueryColumn UPDATE_TIME = new QueryColumn(this, "update_time");
|
||||
|
||||
/**
|
||||
* 字典项描述
|
||||
*/
|
||||
public final QueryColumn DESCRIPTION = new QueryColumn(this, "description");
|
||||
|
||||
/**
|
||||
* 字典ID
|
||||
*/
|
||||
public final QueryColumn DICTIONARY_ID = new QueryColumn(this, "dictionary_id");
|
||||
|
||||
/**
|
||||
* 所有字段。
|
||||
*/
|
||||
public final QueryColumn ALL_COLUMNS = new QueryColumn(this, "*");
|
||||
|
||||
/**
|
||||
* 默认字段,不包含逻辑删除或者 large 等字段。
|
||||
*/
|
||||
public final QueryColumn[] DEFAULT_COLUMNS = new QueryColumn[]{ID, DICTIONARY_ID, PARENT_ID, NAME, CODE, SORT, DESCRIPTION, CREATE_TIME, UPDATE_TIME};
|
||||
|
||||
public DictionaryItemTableDef() {
|
||||
super("", "sys_core_dictionary_item");
|
||||
}
|
||||
|
||||
private DictionaryItemTableDef(String schema, String name, String alisa) {
|
||||
super(schema, name, alisa);
|
||||
}
|
||||
|
||||
public DictionaryItemTableDef as(String alias) {
|
||||
String key = getNameWithSchema() + "." + alias;
|
||||
return getCache(key, k -> new DictionaryItemTableDef("", "sys_core_dictionary_item", alias));
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,82 @@
|
||||
package day.gitlab.dolphin.core.entity.table;
|
||||
|
||||
import com.mybatisflex.core.query.QueryColumn;
|
||||
import com.mybatisflex.core.table.TableDef;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
/**
|
||||
* 字典 表定义层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public class DictionaryTableDef extends TableDef {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 字典
|
||||
*/
|
||||
public static final DictionaryTableDef DICTIONARY = new DictionaryTableDef();
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
public final QueryColumn ID = new QueryColumn(this, "id");
|
||||
|
||||
/**
|
||||
* 字典代码
|
||||
*/
|
||||
public final QueryColumn CODE = new QueryColumn(this, "code");
|
||||
|
||||
/**
|
||||
* 字典名称
|
||||
*/
|
||||
public final QueryColumn NAME = new QueryColumn(this, "name");
|
||||
|
||||
/**
|
||||
* 字典类型: enum-枚举、tree-树型
|
||||
*/
|
||||
public final QueryColumn TYPE = new QueryColumn(this, "type");
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
public final QueryColumn CREATE_TIME = new QueryColumn(this, "create_time");
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
public final QueryColumn UPDATE_TIME = new QueryColumn(this, "update_time");
|
||||
|
||||
/**
|
||||
* 字典描述
|
||||
*/
|
||||
public final QueryColumn DESCRIPTION = new QueryColumn(this, "description");
|
||||
|
||||
/**
|
||||
* 所有字段。
|
||||
*/
|
||||
public final QueryColumn ALL_COLUMNS = new QueryColumn(this, "*");
|
||||
|
||||
/**
|
||||
* 默认字段,不包含逻辑删除或者 large 等字段。
|
||||
*/
|
||||
public final QueryColumn[] DEFAULT_COLUMNS = new QueryColumn[]{ID, NAME, CODE, TYPE, DESCRIPTION, CREATE_TIME, UPDATE_TIME};
|
||||
|
||||
public DictionaryTableDef() {
|
||||
super("", "sys_core_dictionary");
|
||||
}
|
||||
|
||||
private DictionaryTableDef(String schema, String name, String alisa) {
|
||||
super(schema, name, alisa);
|
||||
}
|
||||
|
||||
public DictionaryTableDef as(String alias) {
|
||||
String key = getNameWithSchema() + "." + alias;
|
||||
return getCache(key, k -> new DictionaryTableDef("", "sys_core_dictionary", alias));
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
package day.gitlab.dolphin.core.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import day.gitlab.dolphin.core.entity.DictionaryItem;
|
||||
|
||||
/**
|
||||
* 字典项 映射层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Mapper
|
||||
public interface DictionaryItemMapper extends BaseMapper<DictionaryItem> {
|
||||
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
package day.gitlab.dolphin.core.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import day.gitlab.dolphin.core.entity.Dictionary;
|
||||
|
||||
/**
|
||||
* 字典 映射层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Mapper
|
||||
public interface DictionaryMapper extends BaseMapper<Dictionary> {
|
||||
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package day.gitlab.dolphin.core.service;
|
||||
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import day.gitlab.dolphin.core.entity.DictionaryItem;
|
||||
|
||||
/**
|
||||
* 字典项 服务层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public interface DictionaryItemService extends IService<DictionaryItem> {
|
||||
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package day.gitlab.dolphin.core.service;
|
||||
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import day.gitlab.dolphin.core.entity.Dictionary;
|
||||
|
||||
/**
|
||||
* 字典 服务层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public interface DictionaryService extends IService<Dictionary> {
|
||||
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
package day.gitlab.dolphin.core.service.impl;
|
||||
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import day.gitlab.dolphin.core.entity.DictionaryItem;
|
||||
import day.gitlab.dolphin.core.mapper.DictionaryItemMapper;
|
||||
import day.gitlab.dolphin.core.service.DictionaryItemService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 字典项 服务层实现。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Service
|
||||
public class DictionaryItemServiceImpl extends ServiceImpl<DictionaryItemMapper, DictionaryItem> implements DictionaryItemService{
|
||||
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
package day.gitlab.dolphin.core.service.impl;
|
||||
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import day.gitlab.dolphin.core.entity.Dictionary;
|
||||
import day.gitlab.dolphin.core.mapper.DictionaryMapper;
|
||||
import day.gitlab.dolphin.core.service.DictionaryService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 字典 服务层实现。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Service
|
||||
public class DictionaryServiceImpl extends ServiceImpl<DictionaryMapper, Dictionary> implements DictionaryService{
|
||||
|
||||
}
|
||||
@ -37,6 +37,9 @@
|
||||
<artifactId>lombok</artifactId>
|
||||
</path>
|
||||
</annotationProcessorPaths>
|
||||
<source>${java.version}</source>
|
||||
<target>${java.version}</target>
|
||||
<encoding>UTF-8</encoding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
||||
@ -0,0 +1,95 @@
|
||||
package day.gitlab.dolphin.rbac.controller;
|
||||
|
||||
import com.mybatisflex.core.paginate.Page;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import day.gitlab.dolphin.rbac.entity.Department;
|
||||
import day.gitlab.dolphin.rbac.service.DepartmentService;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 部门表 控制层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/department")
|
||||
public class DepartmentController {
|
||||
|
||||
@Autowired
|
||||
private DepartmentService departmentService;
|
||||
|
||||
/**
|
||||
* 保存部门表。
|
||||
*
|
||||
* @param department 部门表
|
||||
* @return {@code true} 保存成功,{@code false} 保存失败
|
||||
*/
|
||||
@PostMapping("save")
|
||||
public boolean save(@RequestBody Department department) {
|
||||
return departmentService.save(department);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键删除部门表。
|
||||
*
|
||||
* @param id 主键
|
||||
* @return {@code true} 删除成功,{@code false} 删除失败
|
||||
*/
|
||||
@DeleteMapping("remove/{id}")
|
||||
public boolean remove(@PathVariable String id) {
|
||||
return departmentService.removeById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键更新部门表。
|
||||
*
|
||||
* @param department 部门表
|
||||
* @return {@code true} 更新成功,{@code false} 更新失败
|
||||
*/
|
||||
@PutMapping("update")
|
||||
public boolean update(@RequestBody Department department) {
|
||||
return departmentService.updateById(department);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询所有部门表。
|
||||
*
|
||||
* @return 所有数据
|
||||
*/
|
||||
@GetMapping("list")
|
||||
public List<Department> list() {
|
||||
return departmentService.list();
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键获取部门表。
|
||||
*
|
||||
* @param id 部门表主键
|
||||
* @return 部门表详情
|
||||
*/
|
||||
@GetMapping("getInfo/{id}")
|
||||
public Department getInfo(@PathVariable String id) {
|
||||
return departmentService.getById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 分页查询部门表。
|
||||
*
|
||||
* @param page 分页对象
|
||||
* @return 分页对象
|
||||
*/
|
||||
@GetMapping("page")
|
||||
public Page<Department> page(Page<Department> page) {
|
||||
return departmentService.page(page);
|
||||
}
|
||||
|
||||
}
|
||||
@ -1,14 +1,95 @@
|
||||
package day.gitlab.dolphin.rbac.controller;
|
||||
|
||||
import day.gitlab.dolphin.rbac.service.RegionService;
|
||||
import jakarta.annotation.Resource;
|
||||
import com.mybatisflex.core.paginate.Page;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import day.gitlab.dolphin.rbac.entity.Region;
|
||||
import day.gitlab.dolphin.rbac.service.RegionService;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 区划项 控制层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/region")
|
||||
public class RegionController {
|
||||
|
||||
@Resource
|
||||
@Autowired
|
||||
private RegionService regionService;
|
||||
|
||||
/**
|
||||
* 保存区划项。
|
||||
*
|
||||
* @param region 区划项
|
||||
* @return {@code true} 保存成功,{@code false} 保存失败
|
||||
*/
|
||||
@PostMapping("save")
|
||||
public boolean save(@RequestBody Region region) {
|
||||
return regionService.save(region);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键删除区划项。
|
||||
*
|
||||
* @param id 主键
|
||||
* @return {@code true} 删除成功,{@code false} 删除失败
|
||||
*/
|
||||
@DeleteMapping("remove/{id}")
|
||||
public boolean remove(@PathVariable String id) {
|
||||
return regionService.removeById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键更新区划项。
|
||||
*
|
||||
* @param region 区划项
|
||||
* @return {@code true} 更新成功,{@code false} 更新失败
|
||||
*/
|
||||
@PutMapping("update")
|
||||
public boolean update(@RequestBody Region region) {
|
||||
return regionService.updateById(region);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询所有区划项。
|
||||
*
|
||||
* @return 所有数据
|
||||
*/
|
||||
@GetMapping("list")
|
||||
public List<Region> list() {
|
||||
return regionService.list();
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键获取区划项。
|
||||
*
|
||||
* @param id 区划项主键
|
||||
* @return 区划项详情
|
||||
*/
|
||||
@GetMapping("getInfo/{id}")
|
||||
public Region getInfo(@PathVariable String id) {
|
||||
return regionService.getById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 分页查询区划项。
|
||||
*
|
||||
* @param page 分页对象
|
||||
* @return 分页对象
|
||||
*/
|
||||
@GetMapping("page")
|
||||
public Page<Region> page(Page<Region> page) {
|
||||
return regionService.page(page);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -0,0 +1,95 @@
|
||||
package day.gitlab.dolphin.rbac.controller;
|
||||
|
||||
import com.mybatisflex.core.paginate.Page;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import day.gitlab.dolphin.rbac.entity.Role;
|
||||
import day.gitlab.dolphin.rbac.service.RoleService;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 角色表 控制层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/role")
|
||||
public class RoleController {
|
||||
|
||||
@Autowired
|
||||
private RoleService roleService;
|
||||
|
||||
/**
|
||||
* 保存角色表。
|
||||
*
|
||||
* @param role 角色表
|
||||
* @return {@code true} 保存成功,{@code false} 保存失败
|
||||
*/
|
||||
@PostMapping("save")
|
||||
public boolean save(@RequestBody Role role) {
|
||||
return roleService.save(role);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键删除角色表。
|
||||
*
|
||||
* @param id 主键
|
||||
* @return {@code true} 删除成功,{@code false} 删除失败
|
||||
*/
|
||||
@DeleteMapping("remove/{id}")
|
||||
public boolean remove(@PathVariable String id) {
|
||||
return roleService.removeById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键更新角色表。
|
||||
*
|
||||
* @param role 角色表
|
||||
* @return {@code true} 更新成功,{@code false} 更新失败
|
||||
*/
|
||||
@PutMapping("update")
|
||||
public boolean update(@RequestBody Role role) {
|
||||
return roleService.updateById(role);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询所有角色表。
|
||||
*
|
||||
* @return 所有数据
|
||||
*/
|
||||
@GetMapping("list")
|
||||
public List<Role> list() {
|
||||
return roleService.list();
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键获取角色表。
|
||||
*
|
||||
* @param id 角色表主键
|
||||
* @return 角色表详情
|
||||
*/
|
||||
@GetMapping("getInfo/{id}")
|
||||
public Role getInfo(@PathVariable String id) {
|
||||
return roleService.getById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 分页查询角色表。
|
||||
*
|
||||
* @param page 分页对象
|
||||
* @return 分页对象
|
||||
*/
|
||||
@GetMapping("page")
|
||||
public Page<Role> page(Page<Role> page) {
|
||||
return roleService.page(page);
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,95 @@
|
||||
package day.gitlab.dolphin.rbac.controller;
|
||||
|
||||
import com.mybatisflex.core.paginate.Page;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import day.gitlab.dolphin.rbac.entity.User;
|
||||
import day.gitlab.dolphin.rbac.service.UserService;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 用户表 控制层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/user")
|
||||
public class UserController {
|
||||
|
||||
@Autowired
|
||||
private UserService userService;
|
||||
|
||||
/**
|
||||
* 保存用户表。
|
||||
*
|
||||
* @param user 用户表
|
||||
* @return {@code true} 保存成功,{@code false} 保存失败
|
||||
*/
|
||||
@PostMapping("save")
|
||||
public boolean save(@RequestBody User user) {
|
||||
return userService.save(user);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键删除用户表。
|
||||
*
|
||||
* @param id 主键
|
||||
* @return {@code true} 删除成功,{@code false} 删除失败
|
||||
*/
|
||||
@DeleteMapping("remove/{id}")
|
||||
public boolean remove(@PathVariable String id) {
|
||||
return userService.removeById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键更新用户表。
|
||||
*
|
||||
* @param user 用户表
|
||||
* @return {@code true} 更新成功,{@code false} 更新失败
|
||||
*/
|
||||
@PutMapping("update")
|
||||
public boolean update(@RequestBody User user) {
|
||||
return userService.updateById(user);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询所有用户表。
|
||||
*
|
||||
* @return 所有数据
|
||||
*/
|
||||
@GetMapping("list")
|
||||
public List<User> list() {
|
||||
return userService.list();
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据主键获取用户表。
|
||||
*
|
||||
* @param id 用户表主键
|
||||
* @return 用户表详情
|
||||
*/
|
||||
@GetMapping("getInfo/{id}")
|
||||
public User getInfo(@PathVariable String id) {
|
||||
return userService.getById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 分页查询用户表。
|
||||
*
|
||||
* @param page 分页对象
|
||||
* @return 分页对象
|
||||
*/
|
||||
@GetMapping("page")
|
||||
public Page<User> page(Page<User> page) {
|
||||
return userService.page(page);
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,73 @@
|
||||
package day.gitlab.dolphin.rbac.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import java.io.Serializable;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 部门表 实体类。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@Table("sys_rbac_department")
|
||||
public class Department implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@Id
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 区划ID
|
||||
*/
|
||||
private String regionId;
|
||||
|
||||
/**
|
||||
* 上级部门ID
|
||||
*/
|
||||
private String parentId;
|
||||
|
||||
/**
|
||||
* 部门名称
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 部门代码
|
||||
*/
|
||||
private String code;
|
||||
|
||||
/**
|
||||
* 部门排序
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Timestamp createTime;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
private Timestamp updateTime;
|
||||
|
||||
}
|
||||
@ -1,39 +1,88 @@
|
||||
package day.gitlab.dolphin.rbac.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.mybatisflex.core.keygen.KeyGenerators;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
@Data
|
||||
@Table("sys_rbac_region")
|
||||
public class Region {
|
||||
import java.io.Serial;
|
||||
|
||||
@Id(keyType = KeyType.Generator, value = KeyGenerators.flexId)
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 区划项 实体类。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@Table("sys_rbac_region")
|
||||
public class Region implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@Id
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 上级区划ID
|
||||
*/
|
||||
private String parentId;
|
||||
|
||||
/**
|
||||
* 上级区划代码
|
||||
*/
|
||||
private String parentCode;
|
||||
|
||||
/**
|
||||
* 主区划ID
|
||||
*/
|
||||
private String rootId;
|
||||
|
||||
/**
|
||||
* 主区划代码
|
||||
*/
|
||||
private String rootCode;
|
||||
|
||||
/**
|
||||
* 区划名称
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 区划代码
|
||||
*/
|
||||
private String code;
|
||||
|
||||
/**
|
||||
* 区划扩展代码
|
||||
*/
|
||||
private String extCode;
|
||||
|
||||
/**
|
||||
* 区划排序
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
/**
|
||||
* 区划描述
|
||||
*/
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Timestamp createTime;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
private Timestamp updateTime;
|
||||
|
||||
}
|
||||
|
||||
@ -0,0 +1,63 @@
|
||||
package day.gitlab.dolphin.rbac.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import java.io.Serializable;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 角色表 实体类。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@Table("sys_rbac_role")
|
||||
public class Role implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@Id
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 角色名称
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 角色代码
|
||||
*/
|
||||
private String code;
|
||||
|
||||
/**
|
||||
* 角色排序
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Timestamp createTime;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
private Timestamp updateTime;
|
||||
|
||||
}
|
||||
@ -1,19 +1,74 @@
|
||||
package day.gitlab.dolphin.rbac.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.RelationOneToMany;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.mybatisflex.core.keygen.KeyGenerators;
|
||||
import java.io.Serializable;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.util.List;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 用户表 实体类。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@Table("sys_rbac_user")
|
||||
public class User {
|
||||
public class User implements Serializable {
|
||||
|
||||
@Id(keyType = KeyType.Generator, value = KeyGenerators.flexId)
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@Id
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
*/
|
||||
private String username;
|
||||
|
||||
/**
|
||||
* 用户昵称
|
||||
*/
|
||||
private String nickname;
|
||||
|
||||
/**
|
||||
* 用户密码
|
||||
*/
|
||||
private String password;
|
||||
|
||||
private String nickname;
|
||||
/**
|
||||
* 是否启用:0-未启用/1-启用
|
||||
*/
|
||||
private String enabled;
|
||||
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Timestamp createTime;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
private Timestamp updateTime;
|
||||
|
||||
@RelationOneToMany(joinTable = "sys_rbac_user_role",
|
||||
selfField = "id", joinSelfColumn = "user_id",
|
||||
targetField = "id", joinTargetColumn = "role_id")
|
||||
private List<Role> roles;
|
||||
}
|
||||
|
||||
@ -0,0 +1,92 @@
|
||||
package day.gitlab.dolphin.rbac.entity.table;
|
||||
|
||||
import com.mybatisflex.core.query.QueryColumn;
|
||||
import com.mybatisflex.core.table.TableDef;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
/**
|
||||
* 部门表 表定义层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public class DepartmentTableDef extends TableDef {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 部门表
|
||||
*/
|
||||
public static final DepartmentTableDef DEPARTMENT = new DepartmentTableDef();
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
public final QueryColumn ID = new QueryColumn(this, "id");
|
||||
|
||||
/**
|
||||
* 部门代码
|
||||
*/
|
||||
public final QueryColumn CODE = new QueryColumn(this, "code");
|
||||
|
||||
/**
|
||||
* 部门名称
|
||||
*/
|
||||
public final QueryColumn NAME = new QueryColumn(this, "name");
|
||||
|
||||
/**
|
||||
* 部门排序
|
||||
*/
|
||||
public final QueryColumn SORT = new QueryColumn(this, "sort");
|
||||
|
||||
/**
|
||||
* 上级部门ID
|
||||
*/
|
||||
public final QueryColumn PARENT_ID = new QueryColumn(this, "parent_id");
|
||||
|
||||
/**
|
||||
* 区划ID
|
||||
*/
|
||||
public final QueryColumn REGION_ID = new QueryColumn(this, "region_id");
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
public final QueryColumn CREATE_TIME = new QueryColumn(this, "create_time");
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
public final QueryColumn UPDATE_TIME = new QueryColumn(this, "update_time");
|
||||
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
public final QueryColumn DESCRIPTION = new QueryColumn(this, "description");
|
||||
|
||||
/**
|
||||
* 所有字段。
|
||||
*/
|
||||
public final QueryColumn ALL_COLUMNS = new QueryColumn(this, "*");
|
||||
|
||||
/**
|
||||
* 默认字段,不包含逻辑删除或者 large 等字段。
|
||||
*/
|
||||
public final QueryColumn[] DEFAULT_COLUMNS = new QueryColumn[]{ID, REGION_ID, PARENT_ID, NAME, CODE, SORT, DESCRIPTION, CREATE_TIME, UPDATE_TIME};
|
||||
|
||||
public DepartmentTableDef() {
|
||||
super("", "sys_rbac_department");
|
||||
}
|
||||
|
||||
private DepartmentTableDef(String schema, String name, String alisa) {
|
||||
super(schema, name, alisa);
|
||||
}
|
||||
|
||||
public DepartmentTableDef as(String alias) {
|
||||
String key = getNameWithSchema() + "." + alias;
|
||||
return getCache(key, k -> new DepartmentTableDef("", "sys_rbac_department", alias));
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,107 @@
|
||||
package day.gitlab.dolphin.rbac.entity.table;
|
||||
|
||||
import com.mybatisflex.core.query.QueryColumn;
|
||||
import com.mybatisflex.core.table.TableDef;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
/**
|
||||
* 区划项 表定义层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public class RegionTableDef extends TableDef {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 区划项
|
||||
*/
|
||||
public static final RegionTableDef REGION = new RegionTableDef();
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
public final QueryColumn ID = new QueryColumn(this, "id");
|
||||
|
||||
/**
|
||||
* 区划代码
|
||||
*/
|
||||
public final QueryColumn CODE = new QueryColumn(this, "code");
|
||||
|
||||
/**
|
||||
* 区划名称
|
||||
*/
|
||||
public final QueryColumn NAME = new QueryColumn(this, "name");
|
||||
|
||||
/**
|
||||
* 区划排序
|
||||
*/
|
||||
public final QueryColumn SORT = new QueryColumn(this, "sort");
|
||||
|
||||
/**
|
||||
* 主区划ID
|
||||
*/
|
||||
public final QueryColumn ROOT_ID = new QueryColumn(this, "root_id");
|
||||
|
||||
/**
|
||||
* 区划扩展代码
|
||||
*/
|
||||
public final QueryColumn EXT_CODE = new QueryColumn(this, "ext_code");
|
||||
|
||||
/**
|
||||
* 上级区划ID
|
||||
*/
|
||||
public final QueryColumn PARENT_ID = new QueryColumn(this, "parent_id");
|
||||
|
||||
/**
|
||||
* 主区划代码
|
||||
*/
|
||||
public final QueryColumn ROOT_CODE = new QueryColumn(this, "root_code");
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
public final QueryColumn CREATE_TIME = new QueryColumn(this, "create_time");
|
||||
|
||||
/**
|
||||
* 上级区划代码
|
||||
*/
|
||||
public final QueryColumn PARENT_CODE = new QueryColumn(this, "parent_code");
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
public final QueryColumn UPDATE_TIME = new QueryColumn(this, "update_time");
|
||||
|
||||
/**
|
||||
* 区划描述
|
||||
*/
|
||||
public final QueryColumn DESCRIPTION = new QueryColumn(this, "description");
|
||||
|
||||
/**
|
||||
* 所有字段。
|
||||
*/
|
||||
public final QueryColumn ALL_COLUMNS = new QueryColumn(this, "*");
|
||||
|
||||
/**
|
||||
* 默认字段,不包含逻辑删除或者 large 等字段。
|
||||
*/
|
||||
public final QueryColumn[] DEFAULT_COLUMNS = new QueryColumn[]{ID, PARENT_ID, PARENT_CODE, ROOT_ID, ROOT_CODE, NAME, CODE, EXT_CODE, SORT, DESCRIPTION, CREATE_TIME, UPDATE_TIME};
|
||||
|
||||
public RegionTableDef() {
|
||||
super("", "sys_rbac_region");
|
||||
}
|
||||
|
||||
private RegionTableDef(String schema, String name, String alisa) {
|
||||
super(schema, name, alisa);
|
||||
}
|
||||
|
||||
public RegionTableDef as(String alias) {
|
||||
String key = getNameWithSchema() + "." + alias;
|
||||
return getCache(key, k -> new RegionTableDef("", "sys_rbac_region", alias));
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,82 @@
|
||||
package day.gitlab.dolphin.rbac.entity.table;
|
||||
|
||||
import com.mybatisflex.core.query.QueryColumn;
|
||||
import com.mybatisflex.core.table.TableDef;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
/**
|
||||
* 角色表 表定义层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public class RoleTableDef extends TableDef {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 角色表
|
||||
*/
|
||||
public static final RoleTableDef ROLE = new RoleTableDef();
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
public final QueryColumn ID = new QueryColumn(this, "id");
|
||||
|
||||
/**
|
||||
* 角色代码
|
||||
*/
|
||||
public final QueryColumn CODE = new QueryColumn(this, "code");
|
||||
|
||||
/**
|
||||
* 角色名称
|
||||
*/
|
||||
public final QueryColumn NAME = new QueryColumn(this, "name");
|
||||
|
||||
/**
|
||||
* 角色排序
|
||||
*/
|
||||
public final QueryColumn SORT = new QueryColumn(this, "sort");
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
public final QueryColumn CREATE_TIME = new QueryColumn(this, "create_time");
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
public final QueryColumn UPDATE_TIME = new QueryColumn(this, "update_time");
|
||||
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
public final QueryColumn DESCRIPTION = new QueryColumn(this, "description");
|
||||
|
||||
/**
|
||||
* 所有字段。
|
||||
*/
|
||||
public final QueryColumn ALL_COLUMNS = new QueryColumn(this, "*");
|
||||
|
||||
/**
|
||||
* 默认字段,不包含逻辑删除或者 large 等字段。
|
||||
*/
|
||||
public final QueryColumn[] DEFAULT_COLUMNS = new QueryColumn[]{ID, NAME, CODE, SORT, DESCRIPTION, CREATE_TIME, UPDATE_TIME};
|
||||
|
||||
public RoleTableDef() {
|
||||
super("", "sys_rbac_role");
|
||||
}
|
||||
|
||||
private RoleTableDef(String schema, String name, String alisa) {
|
||||
super(schema, name, alisa);
|
||||
}
|
||||
|
||||
public RoleTableDef as(String alias) {
|
||||
String key = getNameWithSchema() + "." + alias;
|
||||
return getCache(key, k -> new RoleTableDef("", "sys_rbac_role", alias));
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,87 @@
|
||||
package day.gitlab.dolphin.rbac.entity.table;
|
||||
|
||||
import com.mybatisflex.core.query.QueryColumn;
|
||||
import com.mybatisflex.core.table.TableDef;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
/**
|
||||
* 用户表 表定义层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public class UserTableDef extends TableDef {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 用户表
|
||||
*/
|
||||
public static final UserTableDef USER = new UserTableDef();
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
public final QueryColumn ID = new QueryColumn(this, "id");
|
||||
|
||||
/**
|
||||
* 是否启用:0-未启用/1-启用
|
||||
*/
|
||||
public final QueryColumn ENABLED = new QueryColumn(this, "enabled");
|
||||
|
||||
/**
|
||||
* 用户昵称
|
||||
*/
|
||||
public final QueryColumn NICKNAME = new QueryColumn(this, "nickname");
|
||||
|
||||
/**
|
||||
* 用户密码
|
||||
*/
|
||||
public final QueryColumn PASSWORD = new QueryColumn(this, "password");
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
*/
|
||||
public final QueryColumn USERNAME = new QueryColumn(this, "username");
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
public final QueryColumn CREATE_TIME = new QueryColumn(this, "create_time");
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
public final QueryColumn UPDATE_TIME = new QueryColumn(this, "update_time");
|
||||
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
public final QueryColumn DESCRIPTION = new QueryColumn(this, "description");
|
||||
|
||||
/**
|
||||
* 所有字段。
|
||||
*/
|
||||
public final QueryColumn ALL_COLUMNS = new QueryColumn(this, "*");
|
||||
|
||||
/**
|
||||
* 默认字段,不包含逻辑删除或者 large 等字段。
|
||||
*/
|
||||
public final QueryColumn[] DEFAULT_COLUMNS = new QueryColumn[]{ID, USERNAME, NICKNAME, PASSWORD, ENABLED, DESCRIPTION, CREATE_TIME, UPDATE_TIME};
|
||||
|
||||
public UserTableDef() {
|
||||
super("", "sys_rbac_user");
|
||||
}
|
||||
|
||||
private UserTableDef(String schema, String name, String alisa) {
|
||||
super(schema, name, alisa);
|
||||
}
|
||||
|
||||
public UserTableDef as(String alias) {
|
||||
String key = getNameWithSchema() + "." + alias;
|
||||
return getCache(key, k -> new UserTableDef("", "sys_rbac_user", alias));
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
package day.gitlab.dolphin.rbac.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import day.gitlab.dolphin.rbac.entity.Department;
|
||||
|
||||
/**
|
||||
* 部门表 映射层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Mapper
|
||||
public interface DepartmentMapper extends BaseMapper<Department> {
|
||||
|
||||
}
|
||||
@ -1,9 +1,16 @@
|
||||
package day.gitlab.dolphin.rbac.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import day.gitlab.dolphin.rbac.entity.Region;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 区划项 映射层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Mapper
|
||||
public interface RegionMapper extends BaseMapper<Region> {
|
||||
|
||||
}
|
||||
|
||||
@ -0,0 +1,16 @@
|
||||
package day.gitlab.dolphin.rbac.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import day.gitlab.dolphin.rbac.entity.Role;
|
||||
|
||||
/**
|
||||
* 角色表 映射层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Mapper
|
||||
public interface RoleMapper extends BaseMapper<Role> {
|
||||
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
package day.gitlab.dolphin.rbac.mapper;
|
||||
|
||||
import com.mybatisflex.core.query.QueryCondition;
|
||||
import day.gitlab.dolphin.rbac.entity.table.UserTableDef;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import day.gitlab.dolphin.rbac.entity.User;
|
||||
|
||||
/**
|
||||
* 用户表 映射层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Mapper
|
||||
public interface UserMapper extends BaseMapper<User> {
|
||||
|
||||
default User findByUsername(String username) {
|
||||
QueryCondition queryCondition = UserTableDef.USER.USERNAME.eq(username);
|
||||
return selectOneByCondition(queryCondition);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package day.gitlab.dolphin.rbac.service;
|
||||
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import day.gitlab.dolphin.rbac.entity.Department;
|
||||
|
||||
/**
|
||||
* 部门表 服务层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public interface DepartmentService extends IService<Department> {
|
||||
|
||||
}
|
||||
@ -3,5 +3,12 @@ package day.gitlab.dolphin.rbac.service;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import day.gitlab.dolphin.rbac.entity.Region;
|
||||
|
||||
/**
|
||||
* 区划项 服务层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public interface RegionService extends IService<Region> {
|
||||
|
||||
}
|
||||
|
||||
@ -0,0 +1,14 @@
|
||||
package day.gitlab.dolphin.rbac.service;
|
||||
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import day.gitlab.dolphin.rbac.entity.Role;
|
||||
|
||||
/**
|
||||
* 角色表 服务层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public interface RoleService extends IService<Role> {
|
||||
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package day.gitlab.dolphin.rbac.service;
|
||||
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import day.gitlab.dolphin.rbac.entity.User;
|
||||
|
||||
/**
|
||||
* 用户表 服务层。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
public interface UserService extends IService<User> {
|
||||
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
package day.gitlab.dolphin.rbac.service.impl;
|
||||
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import day.gitlab.dolphin.rbac.entity.Department;
|
||||
import day.gitlab.dolphin.rbac.mapper.DepartmentMapper;
|
||||
import day.gitlab.dolphin.rbac.service.DepartmentService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 部门表 服务层实现。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Service
|
||||
public class DepartmentServiceImpl extends ServiceImpl<DepartmentMapper, Department> implements DepartmentService{
|
||||
|
||||
}
|
||||
@ -6,6 +6,13 @@ import day.gitlab.dolphin.rbac.mapper.RegionMapper;
|
||||
import day.gitlab.dolphin.rbac.service.RegionService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 区划项 服务层实现。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Service
|
||||
public class RegionServiceImpl extends ServiceImpl<RegionMapper, Region> implements RegionService {
|
||||
public class RegionServiceImpl extends ServiceImpl<RegionMapper, Region> implements RegionService{
|
||||
|
||||
}
|
||||
|
||||
@ -0,0 +1,18 @@
|
||||
package day.gitlab.dolphin.rbac.service.impl;
|
||||
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import day.gitlab.dolphin.rbac.entity.Role;
|
||||
import day.gitlab.dolphin.rbac.mapper.RoleMapper;
|
||||
import day.gitlab.dolphin.rbac.service.RoleService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 角色表 服务层实现。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Service
|
||||
public class RoleServiceImpl extends ServiceImpl<RoleMapper, Role> implements RoleService{
|
||||
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
package day.gitlab.dolphin.rbac.service.impl;
|
||||
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import day.gitlab.dolphin.rbac.entity.User;
|
||||
import day.gitlab.dolphin.rbac.mapper.UserMapper;
|
||||
import day.gitlab.dolphin.rbac.service.UserService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 用户表 服务层实现。
|
||||
*
|
||||
* @author jiangyc
|
||||
* @since 2025-11-28
|
||||
*/
|
||||
@Service
|
||||
public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user