admin
2024-06-29 7ac0b5be02902a96bd1feb658e41a9b69fa50738
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.taoke.autopay.service;
 
import com.taoke.autopay.entity.WxUserSettings;
 
/**
 * @author hxh
 * @title: WxUserSettingService
 * @description: 微信用户设置服务
 * @date 2024/6/28 19:10
 */
public interface WxUserSettingService {
 
    public void add(WxUserSettings settings);
 
    public WxUserSettings selectByUid(Long uid);
 
    public void updateSelective(WxUserSettings settings);
 
}