puzhibing
2023-07-03 d6af8c450e89d515f7f77a2b4b4ddf9c5f9ad4db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.stylefeng.guns.modular.system.dao;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.stylefeng.guns.modular.system.model.RedPacketRecord;
import org.apache.ibatis.annotations.Param;
 
public interface RedPacketRecordMapper extends BaseMapper<RedPacketRecord> {
 
 
    /**
     * 根据企业id获取红包数据
     * @param companyId
     * @return
     */
    RedPacketRecord queryDate(@Param("companyId") Integer companyId);
}