AgentService.java 278 B

12345678910
  1. package cn.service;
  2. import cn.domain.Agent;
  3. import cn.domain.Order;
  4. public interface AgentService {
  5. public Agent login(Agent agent)throws Exception;
  6. public void register(Agent agent)throws Exception;
  7. public Agent findByMid(String mid)throws Exception;
  8. }