2022-04-28 15:59:48 +08:00
|
|
|
package com.engine.organization.service.impl;
|
|
|
|
|
|
|
|
|
|
import com.engine.organization.entity.po.Demo;
|
|
|
|
|
import com.engine.organization.service.TestService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Author weaver_cl
|
2022-06-14 11:07:48 +08:00
|
|
|
* @description:
|
2022-04-28 15:59:48 +08:00
|
|
|
* @Date 2022/4/28
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
2022-06-08 14:21:59 +08:00
|
|
|
//@WeaIocService
|
2022-04-28 15:59:48 +08:00
|
|
|
public class TestServiceImpl implements TestService {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Demo list(String name) {
|
|
|
|
|
return Demo.builder().fid(1).build();
|
|
|
|
|
}
|
|
|
|
|
}
|