All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.binarywang.wx.miniapp.bean.express.WxMaExpressPrinter Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package cn.binarywang.wx.miniapp.bean.express;

import cn.binarywang.wx.miniapp.json.WxMaGsonBuilder;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.io.Serializable;
import java.util.List;

/**
 * 
 * 面单打印员对象
 * 
* @author xiaoyu * @since 2019-11-26 */ @Data @NoArgsConstructor @AllArgsConstructor public class WxMaExpressPrinter implements Serializable { private static final long serialVersionUID = 7164449984700322531L; /** * 数量 */ private Integer count; /** * 打印员openid */ private List openid; /** * 打印员面单打印权限 */ @SerializedName("tagid_list") private List tagidList; public static WxMaExpressPrinter fromJson(String json) { return WxMaGsonBuilder.create().fromJson(json, WxMaExpressPrinter.class); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy