| | |
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.push.PushGoods;
|
| | | import com.yeshi.fanli.exception.PushException;
|
| | | import com.yeshi.fanli.exception.push.PushException;
|
| | | import com.yeshi.fanli.exception.push.PushGoodsException;
|
| | |
|
| | | public interface PushGoodsService {
|
| | |
| | |
|
| | | public int insertSelective(PushGoods record) throws PushGoodsException;
|
| | |
|
| | | public PushGoods selectByPrimaryKey(Long id) throws PushGoodsException;
|
| | | public PushGoods selectByPrimaryKey(Long id);
|
| | |
|
| | | public int updateByPrimaryKeySelective(PushGoods record) throws PushGoodsException;
|
| | |
|
| | |
| | | * @throws PushException
|
| | | */
|
| | | public void handPush(Long id) throws Exception, PushGoodsException, PushException;
|
| | |
|
| | | /**
|
| | | * 保存信息
|
| | | * @param record
|
| | | * @throws PushGoodsException
|
| | | * @throws Exception
|
| | | */
|
| | | public void saveInfo(PushGoods record) throws PushGoodsException, Exception;
|
| | |
|
| | | }
|