40 lines
1.1 KiB
Java
40 lines
1.1 KiB
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.math.BigDecimal;
|
|
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);
|
|
|
|
int updateByCopies(Integer id, Integer copies, BigDecimal amount);
|
|
|
|
List<BingAnVO> selectListByPatientId(String patientId);
|
|
|
|
List<BingAnVO> selectListByHosNum(String hosNum);
|
|
}
|