FrontVxMapper.java 1.35 KB
package com.lhcredit.project.business.frontVx.mapper;

import com.lhcredit.project.business.frontVx.domain.FrontVx;
import java.util.List;

/**
 * 微信用户注册 数据层
 *
 * @author lhcredit
 * @date 2025-09-28
 */
public interface FrontVxMapper {
    /**
     * 查询微信用户注册信息
     *
     * @param id 微信用户注册ID
     * @return 微信用户注册信息
     */
    public FrontVx selectFrontVxById(Integer id);

    /**
     * 查询微信用户注册列表
     *
     * @param frontVx 微信用户注册信息
     * @return 微信用户注册集合
     */
    public List<FrontVx> selectFrontVxList(FrontVx frontVx);

    /**
     * 新增微信用户注册
     *
     * @param frontVx 微信用户注册信息
     * @return 结果
     */
    public int insertFrontVx(FrontVx frontVx);

    /**
     * 修改微信用户注册
     *
     * @param frontVx 微信用户注册信息
     * @return 结果
     */
    public int updateFrontVx(FrontVx frontVx);

    /**
     * 删除微信用户注册
     *
     * @param id 微信用户注册ID
     * @return 结果
     */
    public int deleteFrontVxById(Integer id);

    /**
     * 批量删除微信用户注册
     *
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteFrontVxByIds(String[] ids);

    void updateFrontVxByOpenId(FrontVx frontVx);
}