| 12345678910111213141516171819202122232425 |
- package com.poteviohealth.cgp.statistics.mapper;
- import com.baomidou.mybatisplus.annotation.SqlParser;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.poteviohealth.cgp.statistics.model.WatermarkImg;
- import com.poteviohealth.cgp.statistics.model.indto.OrderRecordDto;
- import com.poteviohealth.cgp.statistics.model.outdto.OrderImageDTO;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- /**
- * 图片处理
- * @author Qin
- */
- @Mapper
- public interface WatermarkImgMapper extends BaseMapper<WatermarkImg>{
- @SqlParser(filter = true)
- int updateOrderUrl(@Param("operatorId")Integer operatorId, @Param("startUrl") String startUrl, @Param("endUrl") String endUrl, @Param("dbName") String dbName, @Param("orderId") Long orderId);
- @SqlParser(filter = true)
- int saveOrderRecord(@Param("dto") OrderRecordDto dto, @Param("dbName") String dbName);
- @SqlParser(filter = true)
- OrderImageDTO getOrderUrl(@Param("operatorId")Integer operatorId,@Param("dbName") String dbName, @Param("orderId") Long orderId);
- }
|