- package cn.service;
- import cn.domain.Agent;
- import cn.domain.Order;
- public interface AgentService {
- public Agent login(Agent agent)throws Exception;
- public void register(Agent agent)throws Exception;
- public Agent findByMid(String mid)throws Exception;
- }
|