| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ltkj.hosp.domain.TjFlowingWater; |
| | | import com.ltkj.hosp.domain.TjOrderDetail; |
| | | import org.apache.ibatis.annotations.Delete; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | |
| | | "AND a.pay_stasus !=0 " + |
| | | "AND a.update_time BETWEEN #{beginTime} AND #{endTime}") |
| | | List<Long> getFlowingWaterIdList(@Param("userId") String userId,@Param("beginTime") Date beginTime,@Param("endTime") Date endTime); |
| | | |
| | | @Delete(" delete" + |
| | | " from tj_flowing_water" + |
| | | " where order_id = #{order}") |
| | | public int deleteTjFlowingWaterByOrderId(String order); |
| | | |
| | | @Delete(" delete" + |
| | | " from tj_flowing_water" + |
| | | " where jxbz = #{bldh}") |
| | | void deleteTjOrderDetailByjxbz(String bldh); |
| | | |
| | | @Select("call tj_bl(#{tjh,mode=IN})") |
| | | void getTjBlCall(@Param("tjh") String tjh); |
| | | } |