File tree Expand file tree Collapse file tree 14 files changed +20
-18
lines changed
weixin-java-common/src/main/java/me/chanjar/weixin/common/service
weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/api
main/java/me/chanjar/weixin/mp/api
test/java/me/chanjar/weixin/mp/api/impl
weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl Expand file tree Collapse file tree 14 files changed +20
-18
lines changed Original file line number Diff line number Diff line change 1
- package me .chanjar .weixin .common .api ;
1
+ package me .chanjar .weixin .common .service ;
2
2
3
3
import me .chanjar .weixin .common .error .WxErrorException ;
4
4
import me .chanjar .weixin .common .bean .imgproc .WxImgProcAiCropResult ;
Original file line number Diff line number Diff line change 1
- package me .chanjar .weixin .mp . api ;
1
+ package me .chanjar .weixin .common . service ;
2
2
3
3
import me .chanjar .weixin .common .bean .WxOAuth2UserInfo ;
4
4
import me .chanjar .weixin .common .bean .oauth2 .WxOAuth2AccessToken ;
Original file line number Diff line number Diff line change 1
- package me .chanjar .weixin .common .api ;
1
+ package me .chanjar .weixin .common .service ;
2
2
3
3
import me .chanjar .weixin .common .error .WxErrorException ;
4
4
import me .chanjar .weixin .common .bean .ocr .WxOcrBankCardResult ;
Original file line number Diff line number Diff line change 2
2
3
3
import cn .binarywang .wx .miniapp .bean .WxMaJscode2SessionResult ;
4
4
import cn .binarywang .wx .miniapp .config .WxMaConfig ;
5
- import me .chanjar .weixin .common .api .WxImgProcService ;
6
- import me .chanjar .weixin .common .api .WxOcrService ;
5
+ import me .chanjar .weixin .common .service .WxImgProcService ;
6
+ import me .chanjar .weixin .common .service .WxOcrService ;
7
7
import me .chanjar .weixin .common .error .WxErrorException ;
8
8
import me .chanjar .weixin .common .service .WxService ;
9
9
import me .chanjar .weixin .common .util .http .MediaUploadRequestExecutor ;
Original file line number Diff line number Diff line change 11
11
import com .google .gson .JsonObject ;
12
12
import lombok .extern .slf4j .Slf4j ;
13
13
import me .chanjar .weixin .common .api .WxConsts ;
14
- import me .chanjar .weixin .common .api .WxImgProcService ;
15
- import me .chanjar .weixin .common .api .WxOcrService ;
14
+ import me .chanjar .weixin .common .service .WxImgProcService ;
15
+ import me .chanjar .weixin .common .service .WxOcrService ;
16
16
import me .chanjar .weixin .common .bean .ToJson ;
17
17
import me .chanjar .weixin .common .bean .WxAccessToken ;
18
18
import me .chanjar .weixin .common .enums .WxType ;
Original file line number Diff line number Diff line change 2
2
3
3
import cn .binarywang .wx .miniapp .api .WxMaService ;
4
4
import lombok .RequiredArgsConstructor ;
5
- import me .chanjar .weixin .common .api .WxImgProcService ;
5
+ import me .chanjar .weixin .common .service .WxImgProcService ;
6
6
import me .chanjar .weixin .common .bean .imgproc .WxImgProcAiCropResult ;
7
7
import me .chanjar .weixin .common .bean .imgproc .WxImgProcQrCodeResult ;
8
8
import me .chanjar .weixin .common .bean .imgproc .WxImgProcSuperResolutionResult ;
Original file line number Diff line number Diff line change 2
2
3
3
import cn .binarywang .wx .miniapp .api .WxMaService ;
4
4
import lombok .RequiredArgsConstructor ;
5
- import me .chanjar .weixin .common .api .WxOcrService ;
5
+ import me .chanjar .weixin .common .service .WxOcrService ;
6
6
import me .chanjar .weixin .common .bean .ocr .*;
7
7
import me .chanjar .weixin .common .error .WxErrorException ;
8
8
import me .chanjar .weixin .common .requestexecuter .ocr .OcrDiscernRequestExecutor ;
Original file line number Diff line number Diff line change 1
1
package me .chanjar .weixin .mp .api ;
2
2
3
3
import com .google .gson .JsonObject ;
4
- import me .chanjar .weixin .common .api .WxImgProcService ;
5
- import me .chanjar .weixin .common .api .WxOcrService ;
4
+ import me .chanjar .weixin .common .service .WxImgProcService ;
5
+ import me .chanjar .weixin .common .service .WxOcrService ;
6
6
import me .chanjar .weixin .common .bean .WxJsapiSignature ;
7
7
import me .chanjar .weixin .common .bean .WxNetCheckResult ;
8
8
import me .chanjar .weixin .common .enums .TicketType ;
9
9
import me .chanjar .weixin .common .error .WxErrorException ;
10
+ import me .chanjar .weixin .common .service .WxOAuth2Service ;
10
11
import me .chanjar .weixin .common .service .WxService ;
11
12
import me .chanjar .weixin .common .util .http .MediaUploadRequestExecutor ;
12
13
import me .chanjar .weixin .common .util .http .RequestExecutor ;
Original file line number Diff line number Diff line change 8
8
import lombok .Setter ;
9
9
import lombok .extern .slf4j .Slf4j ;
10
10
import me .chanjar .weixin .common .api .WxConsts ;
11
- import me .chanjar .weixin .common .api .WxImgProcService ;
12
- import me .chanjar .weixin .common .api .WxOcrService ;
11
+ import me .chanjar .weixin .common .service .WxImgProcService ;
12
+ import me .chanjar .weixin .common .service .WxOcrService ;
13
13
import me .chanjar .weixin .common .bean .ToJson ;
14
14
import me .chanjar .weixin .common .bean .WxAccessToken ;
15
15
import me .chanjar .weixin .common .bean .WxJsapiSignature ;
19
19
import me .chanjar .weixin .common .error .WxError ;
20
20
import me .chanjar .weixin .common .error .WxErrorException ;
21
21
import me .chanjar .weixin .common .error .WxRuntimeException ;
22
+ import me .chanjar .weixin .common .service .WxOAuth2Service ;
22
23
import me .chanjar .weixin .common .session .StandardSessionManager ;
23
24
import me .chanjar .weixin .common .session .WxSessionManager ;
24
25
import me .chanjar .weixin .common .util .DataUtils ;
Original file line number Diff line number Diff line change 2
2
3
3
import lombok .RequiredArgsConstructor ;
4
4
import me .chanjar .weixin .common .error .WxErrorException ;
5
- import me .chanjar .weixin .common .api .WxImgProcService ;
5
+ import me .chanjar .weixin .common .service .WxImgProcService ;
6
6
import me .chanjar .weixin .mp .api .WxMpService ;
7
7
import me .chanjar .weixin .common .bean .imgproc .WxImgProcAiCropResult ;
8
8
import me .chanjar .weixin .common .bean .imgproc .WxImgProcQrCodeResult ;
You can’t perform that action at this time.
0 commit comments