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; import java.util.List;
/**
* 树结构工具类
*
* @author Wenchao Gong
* @date 2021-09-08
*/
public class TreeUtils { public class TreeUtils {
public static final TreeNodeConfig DEFAULT_TREE_NODE_CONFIG = new TreeNodeConfig(); public static final TreeNodeConfig DEFAULT_TREE_NODE_CONFIG = new TreeNodeConfig();

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -6,7 +6,7 @@ import com.ruoyi.isc.domain.IscApplication;
/** /**
* 应用信息Mapper接口 * 应用信息Mapper接口
* *
* @author wenchao gong * @author Wenchao Gong
* @date 2021-09-08 * @date 2021-09-08
*/ */
public interface IscApplicationMapper extends BaseMapperPlus<IscApplication> { public interface IscApplicationMapper extends BaseMapperPlus<IscApplication> {

View File

@ -8,7 +8,7 @@ import org.apache.ibatis.annotations.CacheNamespace;
/** /**
* 服务分类Mapper接口 * 服务分类Mapper接口
* *
* @author wenchao gong * @author Wenchao Gong
* @date 2021-08-22 * @date 2021-08-22
*/ */
public interface IscServiceCateMapper extends BaseMapperPlus<IscServiceCate> { public interface IscServiceCateMapper extends BaseMapperPlus<IscServiceCate> {

View File

@ -8,7 +8,7 @@ import org.apache.ibatis.annotations.CacheNamespace;
/** /**
* 服务信息Mapper接口 * 服务信息Mapper接口
* *
* @author ruoyi * @author Wenchao Gong
* @date 2021-08-22 * @date 2021-08-22
*/ */
public interface IscServiceMapper extends BaseMapperPlus<IscService> { public interface IscServiceMapper extends BaseMapperPlus<IscService> {

View File

@ -12,7 +12,7 @@ import java.util.List;
/** /**
* 应用信息Service接口 * 应用信息Service接口
* *
* @author wenchao gong * @author Wenchao Gong
* @date 2021-09-08 * @date 2021-09-08
*/ */
public interface IIscApplicationService extends IServicePlus<IscApplication, IscApplicationVo> { public interface IIscApplicationService extends IServicePlus<IscApplication, IscApplicationVo> {

View File

@ -14,7 +14,7 @@ import java.util.Set;
/** /**
* 服务分类Service接口 * 服务分类Service接口
* *
* @author wenchao gong * @author Wenchao Gong
* @date 2021-08-22 * @date 2021-08-22
*/ */
public interface IIscServiceCateService extends IServicePlus<IscServiceCate, IscServiceCateVo> { public interface IIscServiceCateService extends IServicePlus<IscServiceCate, IscServiceCateVo> {

View File

@ -12,7 +12,7 @@ import java.util.List;
/** /**
* 服务信息Service接口 * 服务信息Service接口
* *
* @author ruoyi * @author Wenchao Gong
* @date 2021-08-22 * @date 2021-08-22
*/ */
public interface IIscServiceService extends IServicePlus<IscService, IscServiceVo> { public interface IIscServiceService extends IServicePlus<IscService, IscServiceVo> {

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper <!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.isc.mapper.IscAppServiceMapper"> <mapper namespace="com.ruoyi.isc.mapper.IscAppServiceMapper">
<resultMap type="com.ruoyi.isc.domain.IscAppService" id="IscAppServiceResult"> <resultMap type="com.ruoyi.isc.domain.IscAppService" id="IscAppServiceResult">