mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-02 15:36:40 +00:00
16 lines
262 B
Java
16 lines
262 B
Java
package com.java2nb.novel.mapper;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* @author Administrator
|
|
*/
|
|
public interface FrontUserMapper extends UserMapper {
|
|
|
|
|
|
|
|
void addUserBalance(@Param("userId") Long userId, @Param("amount") Integer amount);
|
|
|
|
|
|
}
|