refactor:修改注释

dev.event
袁子龙 2024-09-29 16:03:17 +08:00
parent 688154709d
commit dea0f07c90
19 changed files with 62 additions and 17 deletions

View File

@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
import java.util.List; import java.util.List;
/** /**
* *
* *
* @author ruoyi * @author ruoyi
*/ */

View File

@ -40,7 +40,7 @@ import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream; import java.util.zip.ZipOutputStream;
/** /**
* *
* *
* @author ruoyi * @author ruoyi
*/ */

View File

@ -7,7 +7,7 @@ import com.muyu.system.domain.vo.TreeSelect;
import java.util.List; import java.util.List;
/** /**
* *
* *
* @author muyu * @author muyu
*/ */

View File

@ -16,7 +16,8 @@ import lombok.experimental.SuperBuilder;
import java.util.function.Supplier; import java.util.function.Supplier;
/** /**
* @Authoryuping *
* @author yuping
* @Packagecom.muyu.fence.domain * @Packagecom.muyu.fence.domain
* @Projectcloud-server * @Projectcloud-server
* @nameElectronicFenceGroup * @nameElectronicFenceGroup

View File

@ -6,6 +6,14 @@ import com.muyu.common.domain.resp.CarTypeResp;
import java.util.List; import java.util.List;
/**
*
* @author sx
* @package com.muyu.server.service
* @name CarTypeService
* @date 2024-09-29 15:16:17
*/
public interface CarTypeService extends IService<CarType> { public interface CarTypeService extends IService<CarType> {
List<CarType> selectCarTypeList(); List<CarType> selectCarTypeList();

View File

@ -4,7 +4,8 @@ import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.common.domain.DataType; import com.muyu.common.domain.DataType;
/** /**
* @Authorliuxinyue *
* @author liuxinyue
* @Packagecom.sheep.service * @Packagecom.sheep.service
* @Projectcloud-server-c * @Projectcloud-server-c
* @nameDataTypeService * @nameDataTypeService

View File

@ -8,7 +8,8 @@ import com.muyu.common.domain.resp.ElectronicFenceGroupResp;
import java.util.List; import java.util.List;
/** /**
* @Authoryuping *
* @author yuping
* @Packagecom.muyu.fence.service * @Packagecom.muyu.fence.service
* @Projectcloud-server * @Projectcloud-server
* @nameFenceGroupController * @nameFenceGroupController

View File

@ -11,7 +11,8 @@ import org.springframework.stereotype.Service;
import java.util.List; import java.util.List;
/** /**
* @Authoryuping *
* @author yuping
* @Packagecom.muyu.fence.service * @Packagecom.muyu.fence.service
* @Projectcloud-server * @Projectcloud-server
* @nameElectronicFenceService * @nameElectronicFenceService

View File

@ -6,6 +6,14 @@ import com.muyu.common.util.PageUtils;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
/**
*
* @author yuping
* @package com.muyu.server.service
* @name EnterpriseService
* @date 2024-09-29 15:26:06
*/
public interface EnterpriseService { public interface EnterpriseService {
// 分页查询企业信息 // 分页查询企业信息
public PageUtils selectEnterprise(Map param); public PageUtils selectEnterprise(Map param);

View File

@ -7,7 +7,8 @@ import com.muyu.common.domain.resp.ElectronicFenceResp;
import java.util.List; import java.util.List;
/** /**
* @Authoryuping *
* @author yuping
* @Packagecom.muyu.fence.service * @Packagecom.muyu.fence.service
* @Projectcloud-server * @Projectcloud-server
* @nameFenceGroupMidService * @nameFenceGroupMidService

View File

@ -6,7 +6,8 @@ import com.muyu.common.domain.MessageTemplateType;
import java.util.List; import java.util.List;
/** /**
* @Authorliuxinyue *
* @author liuxinyue
* @Packagecom.sheep.message.service * @Packagecom.sheep.message.service
* @Projectcloud-server-c * @Projectcloud-server-c
* @nameMessageTemplateTypeService * @nameMessageTemplateTypeService

View File

@ -6,7 +6,7 @@ import com.muyu.common.domain.SysCarFaultLog;
import java.util.List; import java.util.List;
/** /**
* *
* @author * @author
* @package: com.muyu.breakdown.service * @package: com.muyu.breakdown.service
* @name: SysCarFaultLogService * @name: SysCarFaultLogService

View File

@ -4,6 +4,13 @@ package com.muyu.server.service;
import com.muyu.common.domain.SysCarLog; import com.muyu.common.domain.SysCarLog;
import java.util.List; import java.util.List;
/**
* 线
* @author sx
* @package com.muyu.server.service
* @name : SysCarLogService
* @date 2024-09-29 15:05:08
*/
public interface SysCarLogService { public interface SysCarLogService {

View File

@ -7,6 +7,13 @@ import com.muyu.common.domain.resp.SysCarVo;
import java.util.List; import java.util.List;
/**
*
* @author sx
* @package com.muyu.server.service
* @name SysCarService
* @date 2024-09-29 15:02:55
*/
public interface SysCarService { public interface SysCarService {
List<SysCarVo> selectSysCarVoList(SysCarReq sysCarReq); List<SysCarVo> selectSysCarVoList(SysCarReq sysCarReq);

View File

@ -4,6 +4,14 @@ import com.muyu.common.domain.MessageTemplateType;
import java.util.List; import java.util.List;
/**
*
* @author liuxinyue
* @package com.muyu.server.service
* @name TemplateNeedService
* @date 2024-09-29 15:31:55
*/
public interface TemplateNeedService { public interface TemplateNeedService {
List<MessageTemplateType> selectByTemplateId(Long templateId); List<MessageTemplateType> selectByTemplateId(Long templateId);
} }

View File

@ -9,7 +9,8 @@ import java.sql.SQLException;
import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutionException;
/** /**
* @Authorliuxinyue *
* @author liuxinyue
* @Packagecom.template.service * @Packagecom.template.service
* @Projectcloud-server-c * @Projectcloud-server-c
* @nameTemplateService * @nameTemplateService

View File

@ -7,9 +7,9 @@ import com.muyu.common.domain.resp.WarnLogsResp;
import java.util.List; import java.util.List;
/** /**
* Service *
* *
* @author muyu * @author sx
* @date 2024-09-20 * @date 2024-09-20
*/ */
public interface WarnLogsService extends IService<WarnLogs> { public interface WarnLogsService extends IService<WarnLogs> {

View File

@ -7,9 +7,9 @@ import com.muyu.common.domain.resp.WarnRuleResp;
import java.util.List; import java.util.List;
/** /**
* Service *
* *
* @author muyu * @author sx
* @date 2024-09-20 * @date 2024-09-20
*/ */
public interface WarnRuleService extends IService<WarnRule> { public interface WarnRuleService extends IService<WarnRule> {

View File

@ -9,9 +9,9 @@ import com.muyu.common.domain.resp.WarnStrategyResp;
import java.util.List; import java.util.List;
/** /**
* Service *
* *
* @author muyu * @author sx
* @date 2024-09-20 * @date 2024-09-20
*/ */
public interface WarnStrategyService extends IService<WarnStrategy> { public interface WarnStrategyService extends IService<WarnStrategy> {