weaver-hrm-organization/src/com/engine/organization/service/impl/TestServiceImpl.java

20 lines
406 B
Java
Raw Normal View History

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:
* @Date 2022/4/28
* @Version V1.0
**/
2022-06-08 14:21:59 +08:00
//@WeaIocService
public class TestServiceImpl implements TestService {
@Override
public Demo list(String name) {
return Demo.builder().fid(1).build();
}
}