You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
351 B
Java
20 lines
351 B
Java
package com.engine.organization.mapper.personnelcard;
|
|
|
|
import com.engine.organization.entity.personnelcard.po.CardButtonPO;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @Description:
|
|
* @Date 2022/10/24
|
|
* @Version V1.0
|
|
**/
|
|
public interface CardButtonMapper {
|
|
|
|
List<CardButtonPO> listAll();
|
|
|
|
|
|
List<CardButtonPO> listEnableButton();
|
|
}
|