weaver-hrm-organization/src/com/engine/organization/mapper/DemoMapper.java

28 lines
312 B
Java
Raw Normal View History

2022-04-27 16:48:22 +08:00
package com.engine.organization.mapper;
import com.engine.organization.entity.po.Demo;
import java.util.List;
/**
* @Author weaver_cl
2022-06-14 11:07:48 +08:00
* @description:
2022-04-27 16:48:22 +08:00
* @Date 2022/3/9
* @Version V1.0
**/
public interface DemoMapper {
/**
* 查询所有
* @return
*/
List<Demo> listAll();
}