package com.gear.swx.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import com.gear.swx.domain.SwxOptionsOrder; import org.apache.ibatis.annotations.Param; import java.math.BigDecimal; /** * 期权订单Mapper接口 * * @author czx * @date 2023-11-20 */ @Mapper public interface SwxOptionsOrderMapper extends BaseMapper { boolean updateMq(@Param(value = "id")String id, @Param(value = "endPriceTrue")BigDecimal endPriceTrue,@Param(value = "income")BigDecimal income); }