|
|
@@ -1,55 +0,0 @@
|
|
|
-package jp.yamoto.farm.common.biz.service.impl;
|
|
|
-
|
|
|
-import jp.yamoto.farm.common.biz.domain.entity.BssOrderStatusHistoryEntity;
|
|
|
-import java.util.List;
|
|
|
-import lombok.EqualsAndHashCode;
|
|
|
-
|
|
|
-
|
|
|
-/**
|
|
|
- * 注文ステータス履歴情報 Mapperインタフェース
|
|
|
- *
|
|
|
- * @author nextosd
|
|
|
- */
|
|
|
-public interface BssOrderStatusHistoryBaseMapper {
|
|
|
-
|
|
|
- /**
|
|
|
- *注文ステータス履歴情報を検索
|
|
|
- *
|
|
|
- * @param id 注文ステータス履歴情報プライマリ・キー
|
|
|
- * @return 注文ステータス履歴情報
|
|
|
- */
|
|
|
- public BssOrderStatusHistoryEntity selectById(String id);
|
|
|
-
|
|
|
- /**
|
|
|
- *注文ステータス履歴情報を検索リスト
|
|
|
- *
|
|
|
- * @param bssOrderStatusHistory 注文ステータス履歴情報
|
|
|
- * @return 注文ステータス履歴情報リスト
|
|
|
- */
|
|
|
- public List<BssOrderStatusHistoryEntity> selectList(BssOrderStatusHistoryEntity bssOrderStatusHistory);
|
|
|
-
|
|
|
- /**
|
|
|
- *注文ステータス履歴情報を登録
|
|
|
- *
|
|
|
- * @param bssOrderStatusHistory 注文ステータス履歴情報
|
|
|
- * @return 結果
|
|
|
- */
|
|
|
- public int insert(BssOrderStatusHistoryEntity bssOrderStatusHistory);
|
|
|
-
|
|
|
- /**
|
|
|
- *注文ステータス履歴情報を修正
|
|
|
- *
|
|
|
- * @param bssOrderStatusHistory 注文ステータス履歴情報
|
|
|
- * @return 結果
|
|
|
- */
|
|
|
- public int update(BssOrderStatusHistoryEntity bssOrderStatusHistory);
|
|
|
-
|
|
|
- /**
|
|
|
- * 注文ステータス履歴情報を削除
|
|
|
- *
|
|
|
- * @param id 注文ステータス履歴情報プライマリ・キー
|
|
|
- * @return 結果
|
|
|
- */
|
|
|
- public int deleteById(String id);
|
|
|
-
|
|
|
-}
|