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