PickUpPersonDao.java 614 Bytes
package com.diligrp.website.dao;

import java.util.List;

import com.diligrp.website.domain.PickUpPerson;


/**
 * <B>Description</B> TODO <br />
 * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />
 * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
 * <B>Company</B> 地利集团
 * @createTime 2014年8月13日 下午4:35:15
 * @author liujie
 */
public interface PickUpPersonDao {
      List<PickUpPerson> getPickUpList(Long pickId);
      boolean savePickUpPerson(PickUpPerson pickUpPerson);
      boolean deletePickUpPerson(Long pickId);
}