refactor:修改注释
parent
dea0f07c90
commit
2488248967
|
@ -11,6 +11,13 @@ import org.springframework.stereotype.Service;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 车辆类型 服务层处理
|
||||
* @author sx
|
||||
* @package com.muyu.server.service.impl
|
||||
* @name CarTypeServiceImpl
|
||||
* @date 2024-09-29 16:06:22
|
||||
*/
|
||||
@Service
|
||||
public class CarTypeServiceImpl extends ServiceImpl<CarTypeMapper, CarType> implements CarTypeService{
|
||||
@Autowired
|
||||
|
|
|
@ -8,7 +8,8 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @Author:liuxinyue
|
||||
* 数据类型 服务层处理
|
||||
* @author liuxinyue
|
||||
* @Package:com.sheep.service.impl
|
||||
* @Project:cloud-server-c
|
||||
* @name:DataTypeServiceImpl
|
||||
|
|
|
@ -19,7 +19,8 @@ import org.springframework.stereotype.Service;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author:yuping
|
||||
* 围栏组 服务层处理
|
||||
* @author yuping
|
||||
* @Package:com.muyu.fence.service.impl
|
||||
* @Project:cloud-server
|
||||
* @name:FenceGroupServiceImpl
|
||||
|
|
|
@ -18,7 +18,8 @@ import org.springframework.stereotype.Service;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author:yuping
|
||||
* 电子围栏 服务层处理
|
||||
* @author yuping
|
||||
* @Package:com.muyu.fence.service.impl
|
||||
* @Project:cloud-server
|
||||
* @name:ElectronicFenceServiceImpl
|
||||
|
|
|
@ -11,9 +11,10 @@ import org.springframework.stereotype.Service;
|
|||
import java.util.*;
|
||||
|
||||
/**
|
||||
* @Author YuPing
|
||||
* @Description 企业运营实现层
|
||||
* @Version 1.0
|
||||
* 企业运营 服务层处理
|
||||
* @author yuping
|
||||
* @package com.muyu.server.service.impl
|
||||
* @name EnterpriseServiceImpl
|
||||
* @Data 2024-09-26 20:23:21
|
||||
*/
|
||||
@Service
|
||||
|
|
|
@ -12,7 +12,8 @@ import org.springframework.stereotype.Service;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author:yuping
|
||||
* 围栏组链接 服务层处理
|
||||
* @author yuping
|
||||
* @Package:com.muyu.fence.service.impl
|
||||
* @Project:cloud-server
|
||||
* @name:FenceGroupMidServiceImpl
|
||||
|
|
|
@ -11,9 +11,9 @@ import org.springframework.stereotype.Service;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author:liuxinyue
|
||||
* 报文模版类型 服务层处理
|
||||
* @author liuxinyue
|
||||
* @Package:com.sheep.message.service.impl
|
||||
* @Project:cloud-server-c
|
||||
* @name:MessageTemplateTypeServiceImpl
|
||||
* @Date:2024/9/19 14:34
|
||||
*/
|
||||
|
|
|
@ -10,7 +10,7 @@ import org.springframework.stereotype.Service;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 车辆故障记录 业务层
|
||||
* 车辆故障记录 服务层处理
|
||||
* @author 袁子龙
|
||||
* @package: com.muyu.breakdown.service.impl
|
||||
* @name: sysCarFaultLogServiceImpl
|
||||
|
|
|
@ -11,7 +11,7 @@ import org.springframework.stereotype.Service;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 站内信 业务层
|
||||
* 站内信 服务层处理
|
||||
* @author 袁子龙
|
||||
* @package: com.muyu.breakdown.service.impl
|
||||
* @name: SysCarFaultMessageServiceImpl
|
||||
|
|
|
@ -13,7 +13,7 @@ import org.springframework.util.Assert;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 车辆故障码 业务层
|
||||
* 车辆故障码 服务层处理
|
||||
* @author 袁子龙
|
||||
* @package: com.muyu.breakdown.service.impl
|
||||
* @name: SysCarFaultServiceImpl
|
||||
|
|
|
@ -10,6 +10,13 @@ import org.springframework.stereotype.Service;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 车辆上下线记录 服务层处理
|
||||
* @author sx
|
||||
* @package com.muyu.server.service.impl
|
||||
* @name SysCarLogServiceImpl
|
||||
* @date 2024/9/22 14:36
|
||||
*/
|
||||
@Service
|
||||
public class SysCarLogServiceImpl extends ServiceImpl<SysCarLogMapper, SysCarLog> implements SysCarLogService {
|
||||
@Autowired
|
||||
|
|
|
@ -12,7 +12,13 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 车辆管理 服务层处理
|
||||
* @author sx
|
||||
* @package com.muyu.server.service.impl
|
||||
* @name SysCarServiceImpl
|
||||
* @date 2024/9/22 14:36
|
||||
*/
|
||||
@Service
|
||||
public class SysCarServiceImpl extends ServiceImpl<SysCarMapper, SysCar> implements SysCarService {
|
||||
@Autowired
|
||||
|
|
|
@ -8,6 +8,13 @@ import org.springframework.stereotype.Service;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 报文模版 服务层处理
|
||||
* @author liuxinyue
|
||||
* @package com.muyu.server.service.impl
|
||||
* @name TemplateNeedServiceImpl
|
||||
* @date 2024/9/22 14:36
|
||||
*/
|
||||
@Service
|
||||
public class TemplateNeedServiceImpl implements TemplateNeedService {
|
||||
|
||||
|
|
|
@ -22,9 +22,9 @@ import java.util.List;
|
|||
import java.util.concurrent.CompletableFuture;
|
||||
import java.util.concurrent.ExecutionException;
|
||||
/**
|
||||
* @Author:liuxinyue
|
||||
* 报文模版 服务层
|
||||
* @author liuxinyue
|
||||
* @Package:com.template.service.impl
|
||||
* @Project:cloud-server-c
|
||||
* @name:TemplateServiceImp
|
||||
* @Date:2024/9/20 12:12
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue