admin
2024-07-27 65aaf1c05bd06cefa82ebc40cc3e01cf4ac233c0
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
27
28
package com.taoke.autopay;
 
import com.taoke.autopay.service.WxUserService;
import com.taoke.autopay.utils.Constant;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
 
import javax.annotation.Resource;
import java.math.BigDecimal;
 
/**
 * @author hxh
 * @title: WxUserTests
 * @description: TODO
 * @date 2024/6/29 13:10
 */
@SpringBootTest
public class WxUserTests {
 
    @Resource
    private WxUserService wxUserService;
 
    @Test
    public void addWxUser(){
//        wxUserService.login("1231231231231234");
    }
 
}