weaver-hrm-organization/src/com/engine/organization/service/CardAccessService.java

59 lines
942 B
Java
Raw Normal View History

2022-11-01 17:53:31 +08:00
package com.engine.organization.service;
2022-11-08 09:23:53 +08:00
import com.engine.organization.entity.personnelcard.po.CardAccessPO;
import java.util.Collection;
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
2022-11-08 09:23:53 +08:00
/**
* 列表接口
* @return
*/
2022-11-02 17:44:52 +08:00
Map<String, Object> tablePage();
2022-11-08 09:23:53 +08:00
/**
* 页面权限
* @return
*/
2022-11-02 17:44:52 +08:00
Map<String, Object> hasRight();
2022-11-08 09:23:53 +08:00
/**
* 列表保存
* @param params
* @return
*/
2022-11-02 17:44:52 +08:00
int save(Map<String, Object> params);
2022-11-08 09:23:53 +08:00
/**
* 删除
* @param ids
* @return
*/
int deleteByIds(Collection<Long> ids);
/**
* 新增
* @param cardAccessPO
* @return
*/
int addData(CardAccessPO cardAccessPO);
/**
* 更新tab名称
* @param name
* @param id
* @return
*/
int updateTabName(String name,Integer id);
2022-11-01 17:53:31 +08:00
}