luodangjia
2024-12-10 ee7ce5d1cbf80bee0a15c1e5bc5eaa30858d812b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.hollywood.manage.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hollywood.common.model.TAdvertisementConfig;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
/**
 * <p>
 * 广告配置 Mapper 接口
 * </p>
 *
 * @author xiaochen
 * @since 2024-02-29
 */
@Mapper
public interface TAdvertisementConfigMapper extends BaseMapper<TAdvertisementConfig> {
 
 
 
    /**
     * 修改广告配置时间
     * @param advertisementConfig
     */
    void updateAdvertisementConfig(@Param("id") Long id, @Param("advertisementConfig")Integer advertisementConfig);
}