init
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.ruoyi.cai.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.cai.domain.PayTotal;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 支付统计Mapper接口
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-01-21
|
||||
*/
|
||||
public interface PayTotalMapper extends BaseMapper<PayTotal> {
|
||||
|
||||
void incsPrice(@Param("id") Long id, @Param("price") BigDecimal price);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user