mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-19 09:55:16 +08:00
author 统一
This commit is contained in:
parent
ea42d0b6aa
commit
bb02108ab0
@ -7,6 +7,12 @@ import cn.hutool.core.lang.tree.parser.NodeParser;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 树结构工具类
|
||||
*
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-09-08
|
||||
*/
|
||||
public class TreeUtils {
|
||||
|
||||
public static final TreeNodeConfig DEFAULT_TREE_NODE_CONFIG = new TreeNodeConfig();
|
||||
|
||||
@ -30,7 +30,7 @@ import java.util.List;
|
||||
/**
|
||||
* 应用信息Controller
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-09-08
|
||||
*/
|
||||
@Validated
|
||||
|
||||
@ -36,7 +36,7 @@ import io.swagger.annotations.ApiOperation;
|
||||
/**
|
||||
* 服务分类Controller
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
@Validated
|
||||
|
||||
@ -29,7 +29,7 @@ import io.swagger.annotations.ApiOperation;
|
||||
/**
|
||||
* 服务信息Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
@Validated
|
||||
|
||||
@ -11,7 +11,7 @@ import java.math.BigDecimal;
|
||||
/**
|
||||
* 应用信息对象 isc_application
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-09-08
|
||||
*/
|
||||
@Data
|
||||
|
||||
@ -11,7 +11,7 @@ import java.math.BigDecimal;
|
||||
/**
|
||||
* 服务信息对象 isc_service
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
@Data
|
||||
|
||||
@ -14,7 +14,7 @@ import java.util.List;
|
||||
/**
|
||||
* 服务分类对象 isc_service_cate
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
@Data
|
||||
|
||||
@ -13,7 +13,7 @@ import javax.validation.constraints.NotBlank;
|
||||
/**
|
||||
* 应用信息业务对象 isc_application
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-09-08
|
||||
*/
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@ import javax.validation.constraints.NotNull;
|
||||
/**
|
||||
* 服务信息业务对象 isc_service
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@ import javax.validation.constraints.NotBlank;
|
||||
/**
|
||||
* 服务分类业务对象 isc_service_cate
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@ import java.util.Date;
|
||||
/**
|
||||
* 应用信息视图对象 isc_application
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-09-08
|
||||
*/
|
||||
@Data
|
||||
|
||||
@ -14,7 +14,7 @@ import java.util.Date;
|
||||
/**
|
||||
* 服务分类视图对象 isc_service_cate
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
@Data
|
||||
|
||||
@ -6,7 +6,7 @@ import com.ruoyi.isc.domain.IscApplication;
|
||||
/**
|
||||
* 应用信息Mapper接口
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-09-08
|
||||
*/
|
||||
public interface IscApplicationMapper extends BaseMapperPlus<IscApplication> {
|
||||
|
||||
@ -8,7 +8,7 @@ import org.apache.ibatis.annotations.CacheNamespace;
|
||||
/**
|
||||
* 服务分类Mapper接口
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
public interface IscServiceCateMapper extends BaseMapperPlus<IscServiceCate> {
|
||||
|
||||
@ -8,7 +8,7 @@ import org.apache.ibatis.annotations.CacheNamespace;
|
||||
/**
|
||||
* 服务信息Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
public interface IscServiceMapper extends BaseMapperPlus<IscService> {
|
||||
|
||||
@ -12,7 +12,7 @@ import java.util.List;
|
||||
/**
|
||||
* 应用信息Service接口
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-09-08
|
||||
*/
|
||||
public interface IIscApplicationService extends IServicePlus<IscApplication, IscApplicationVo> {
|
||||
|
||||
@ -14,7 +14,7 @@ import java.util.Set;
|
||||
/**
|
||||
* 服务分类Service接口
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
public interface IIscServiceCateService extends IServicePlus<IscServiceCate, IscServiceCateVo> {
|
||||
|
||||
@ -12,7 +12,7 @@ import java.util.List;
|
||||
/**
|
||||
* 服务信息Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
public interface IIscServiceService extends IServicePlus<IscService, IscServiceVo> {
|
||||
|
||||
@ -24,7 +24,7 @@ import java.util.Map;
|
||||
/**
|
||||
* 应用信息Service业务层处理
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-09-08
|
||||
*/
|
||||
@Service
|
||||
|
||||
@ -21,7 +21,7 @@ import java.util.stream.Collectors;
|
||||
/**
|
||||
* 服务分类Service业务层处理
|
||||
*
|
||||
* @author wenchao gong
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
@Service
|
||||
|
||||
@ -29,7 +29,7 @@ import java.util.stream.Collectors;
|
||||
/**
|
||||
* 服务信息Service业务层处理
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author Wenchao Gong
|
||||
* @date 2021-08-22
|
||||
*/
|
||||
@Service
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.isc.mapper.IscAppServiceMapper">
|
||||
|
||||
<resultMap type="com.ruoyi.isc.domain.IscAppService" id="IscAppServiceResult">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user