2022-11-01 17:53:31 +08:00
|
|
|
package com.engine.organization.service;
|
|
|
|
|
|
2022-11-02 17:44:52 +08:00
|
|
|
import java.util.Map;
|
|
|
|
|
|
2022-11-01 17:53:31 +08:00
|
|
|
/**
|
|
|
|
|
* @Author weaver_cl
|
|
|
|
|
* @Description:
|
|
|
|
|
* @Date 2022/11/1
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public interface CardAccessService {
|
2022-11-02 17:44:52 +08:00
|
|
|
|
|
|
|
|
Map<String, Object> tablePage();
|
|
|
|
|
|
|
|
|
|
Map<String, Object> hasRight();
|
|
|
|
|
|
|
|
|
|
int save(Map<String, Object> params);
|
2022-11-01 17:53:31 +08:00
|
|
|
}
|