33 lines
880 B
Java
33 lines
880 B
Java
|
|
package com.guahao.h5.reserve.mapper;
|
||
|
|
|
||
|
|
import com.guahao.h5.reserve.vo.BingAnVO;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
@Mapper
|
||
|
|
public interface BinganMapper {
|
||
|
|
int insertInfo(BingAnVO vo);
|
||
|
|
|
||
|
|
|
||
|
|
boolean checkSameNameRecordToday(String patientName, String dateOnly);
|
||
|
|
|
||
|
|
List<BingAnVO> selectListByUserId(Integer userId);
|
||
|
|
|
||
|
|
|
||
|
|
Integer deleteApplication(Integer id);
|
||
|
|
|
||
|
|
BingAnVO selectByOrderNo(@Param("outTradeNo") String outTradeNo);
|
||
|
|
|
||
|
|
void updateReptnoByOrderNo(@Param("outTradeNo") String outTradeNo, @Param("rcptNo") String rcptNo,@Param("code") String code);
|
||
|
|
|
||
|
|
List<BingAnVO> selectListByUserIdAndStatus(Integer userId, Integer status);
|
||
|
|
|
||
|
|
void updateByOrderNo(String orderno);
|
||
|
|
|
||
|
|
void updateById(String payOrderNo, Integer id);
|
||
|
|
|
||
|
|
void updateByOrderNoAndStatus(String orderno);
|
||
|
|
}
|