| | |
| | | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.nq.pojo.AgentUser; |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | public interface AgentUserMapper { |
| | | public interface AgentUserMapper extends BaseMapper<AgentUser> { |
| | | int deleteByPrimaryKey(Integer paramInteger); |
| | | |
| | | int insert(AgentUser paramAgentUser); |
| | |
| | | int updateTotalMoney(AgentUser paramAgentUser); |
| | | |
| | | AgentUser findByCode(String paramString); |
| | | |
| | | AgentUser findByCodeAndNeid(String agentCode,Integer id); |
| | | |
| | | AgentUser findByPhone(String paramString); |
| | | |
| | | AgentUser findByParentId(Integer parentId); |
| | | |
| | | List<AgentUser> getParensAgent(); |
| | | |
| | | AgentUser findByName(String paramString); |
| | | |