| | |
| | | import com.xcong.excoin.modules.yunding.vo.YdOrderVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface YdOrderDao extends BaseMapper<YdOrderEntity> { |
| | | |
| | | IPage<YdOrderVo> getOrderList(Page<YdOrderVo> page, @Param("record") YdOrderEntity ydOrderEntity); |
| | | |
| | | List<YdOrderEntity> selectNeedReturnOrders(); |
| | | |
| | | List<YdOrderEntity> selectAllValidOrders(); |
| | | void UpdateByIdAndState(@Param("id")Long id, @Param("state")int state); |
| | | |
| | | YdOrderVo selectOrderByMemberIdAndId(@Param("memberId")Long memberId, @Param("id")Long id); |
| | | } |