1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.hx.util.corp.entity;
|
| import com.alibaba.fastjson.annotation.JSONField;
| import lombok.Data;
|
| /**
| * @ClassName AppLetInfo
| * @Description 获取 URL Link 返回数据
| * @Author wrh
| * @Date 2023/4/3 16:00
| * @Version 1.0
| */
| @Data
| public class AppLetInfo {
| //错误码
| private Integer errcode;
| //错误信息
| private String errmsg;
| //生成的小程序 URL Link
| @JSONField(name="url_link")
| private String urlLink;
| }
|
|