| | |
| | | |
| | | import com.moral.api.entity.ManageRole; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @author moral |
| | | * @since 2021-03-09 |
| | | */ |
| | | @Transactional |
| | | public interface ManageRoleService extends IService<ManageRole> { |
| | | |
| | | @Transactional |
| | | List<ManageRole> getAll(); |
| | | |
| | | @Transactional |
| | | Map<String,Object> insertOne(ManageRole manageRole,List list); |
| | | |
| | | @Transactional |
| | | Map<String,Object> updateManageRole(Map map); |
| | | |
| | | @Transactional |
| | | List<ManageRole> getManageRoleByNameFuzzy(ManageRole manageRole); |
| | | |
| | | @Transactional |
| | | Map<String,Object> deleteManageRole(Map map); |
| | | } |