package com.moral.mapper; import java.util.List; import com.moral.common.mapper.BaseMapper; import com.moral.entity.AccountRole; import tk.mybatis.mapper.entity.Example; public interface AccountRoleMapper extends BaseMapper { List getAccountRoleList(Example example); int updateByPrimaryKey(AccountRole accountRole); int deleteByPrimaryKeyOwn(Integer id); }