You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
786 B
31 lines
786 B
package com.example.demo.mapper.bean;
|
|
|
|
|
|
import com.example.demo.domain.vo.bean.BeanUser;
|
|
import com.example.demo.domain.vo.bean.BeanUserCard;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName BeanUserMapper
|
|
* @description:
|
|
* @author: Double
|
|
* @create: 2025−07-29 17:31
|
|
* @Version 1.0
|
|
**/
|
|
|
|
@Mapper
|
|
public interface BeanUserMapper {
|
|
//查询客户金豆余额
|
|
List<BeanUser> selectUserBy(@Param("beanUser") BeanUser beanUser);
|
|
|
|
//查询用户卡片
|
|
BeanUserCard userCard(@Param("jwcode")String jwcode);
|
|
//查询客户金豆余额合计
|
|
BeanUserCard SumUserBy(@Param("beanUser")BeanUser beanUser);
|
|
//查询客户分部
|
|
List<String> getDept();
|
|
}
|