Pre Merge pull request !2 from reset/master
commit
77da9a1bfe
@ -0,0 +1,15 @@
|
||||
package com.engine.organization.service;
|
||||
|
||||
import com.engine.organization.entity.po.Demo;
|
||||
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/4/28
|
||||
* @Version V1.0
|
||||
**/
|
||||
public interface TestService {
|
||||
|
||||
Demo list(String name);
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.engine.organization.service.impl;
|
||||
|
||||
import com.engine.organization.entity.po.Demo;
|
||||
import com.engine.organization.service.TestService;
|
||||
import com.weaverboot.frame.ioc.anno.classAnno.WeaIocService;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/4/28
|
||||
* @Version V1.0
|
||||
**/
|
||||
@WeaIocService
|
||||
public class TestServiceImpl implements TestService {
|
||||
|
||||
@Override
|
||||
public Demo list(String name) {
|
||||
return Demo.builder().fid(1).build();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue