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; }