author 统一

This commit is contained in:
wenchaogong 2021-09-08 20:46:01 +08:00
parent ea42d0b6aa
commit bb02108ab0
22 changed files with 28 additions and 22 deletions

View File

@ -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();

View File

@ -30,7 +30,7 @@ import java.util.List;
/**
* 应用信息Controller
*
* @author wenchao gong
* @author Wenchao Gong
* @date 2021-09-08
*/
@Validated

View File

@ -36,7 +36,7 @@ import io.swagger.annotations.ApiOperation;
/**
* 服务分类Controller
*
* @author wenchao gong
* @author Wenchao Gong
* @date 2021-08-22
*/
@Validated

View File

@ -29,7 +29,7 @@ import io.swagger.annotations.ApiOperation;
/**
* 服务信息Controller
*
* @author ruoyi
* @author Wenchao Gong
* @date 2021-08-22
*/
@Validated

View File

@ -11,7 +11,7 @@ import java.math.BigDecimal;
/**
* 应用信息对象 isc_application
*
* @author wenchao gong
* @author Wenchao Gong
* @date 2021-09-08
*/
@Data

View File

@ -11,7 +11,7 @@ import java.math.BigDecimal;
/**
* 服务信息对象 isc_service
*
* @author ruoyi
* @author Wenchao Gong
* @date 2021-08-22
*/
@Data

View File

@ -14,7 +14,7 @@ import java.util.List;
/**
* 服务分类对象 isc_service_cate
*
* @author wenchao gong
* @author Wenchao Gong
* @date 2021-08-22
*/
@Data

View File

@ -13,7 +13,7 @@ import javax.validation.constraints.NotBlank;
/**
* 应用信息业务对象 isc_application
*
* @author wenchao gong
* @author Wenchao Gong
* @date 2021-09-08
*/

View File

@ -14,7 +14,7 @@ import javax.validation.constraints.NotNull;
/**
* 服务信息业务对象 isc_service
*
* @author ruoyi
* @author Wenchao Gong
* @date 2021-08-22
*/

View File

@ -13,7 +13,7 @@ import javax.validation.constraints.NotBlank;
/**
* 服务分类业务对象 isc_service_cate
*
* @author wenchao gong
* @author Wenchao Gong
* @date 2021-08-22
*/

View File

@ -13,7 +13,7 @@ import java.util.Date;
/**
* 应用信息视图对象 isc_application
*
* @author wenchao gong
* @author Wenchao Gong
* @date 2021-09-08
*/
@Data

View File

@ -14,7 +14,7 @@ import java.util.Date;
/**
* 服务分类视图对象 isc_service_cate
*
* @author wenchao gong
* @author Wenchao Gong
* @date 2021-08-22
*/
@Data

View File

@ -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> {

View File

@ -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> {

View File

@ -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> {

View File

@ -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> {

View File

@ -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> {

View File

@ -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> {

View File

@ -24,7 +24,7 @@ import java.util.Map;
/**
* 应用信息Service业务层处理
*
* @author wenchao gong
* @author Wenchao Gong
* @date 2021-09-08
*/
@Service

View File

@ -21,7 +21,7 @@ import java.util.stream.Collectors;
/**
* 服务分类Service业务层处理
*
* @author wenchao gong
* @author Wenchao Gong
* @date 2021-08-22
*/
@Service

View File

@ -29,7 +29,7 @@ import java.util.stream.Collectors;
/**
* 服务信息Service业务层处理
*
* @author ruoyi
* @author Wenchao Gong
* @date 2021-08-22
*/
@Service

View File

@ -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">