fhx
2024-09-29 e0ef9fe0ded50ac2c9e40c8616c99007048521c4
提交 | 用户 | age
826b66 1 package com.hx.util.corp.entity;
C 2
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 }