This commit is contained in:
Lemon
2023-09-04 14:23:27 +08:00
parent 93d4128a0d
commit f1f6c10024
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package com.jsowell.thirdparty.zhongdianlian.service;
/**
* 中电联 Service
*
* @author Lemon
* @Date 2023/9/2 13:53
*/
public interface ZDLService {
}

View File

@@ -0,0 +1,15 @@
package com.jsowell.thirdparty.zhongdianlian.service.impl;
import com.jsowell.thirdparty.zhongdianlian.service.ZDLService;
import org.springframework.stereotype.Service;
/**
* 中电联 Service
*
* @author Lemon
* @Date 2023/9/2 13:54
*/
@Service
public class ZDLServiceImpl implements ZDLService {
}