repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/util/WeiboFollowersUtil.java
src/main/java/com/jeecg/weibo/util/WeiboFollowersUtil.java
package com.jeecg.weibo.util; import com.alipay.api.internal.util.StringUtils; import com.jeecg.weibo.dto.WeiboFollowersDto; import com.jeecg.weibo.exception.BusinessException; public class WeiboFollowersUtil { /* * * 获取@当前用户的最新微博的请求必填参数验证 * */ public static void getFollowersParmValidate(WeiboFollowersDt...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/util/WeiboUsersUtil.java
src/main/java/com/jeecg/weibo/util/WeiboUsersUtil.java
package com.jeecg.weibo.util; import com.alipay.api.internal.util.StringUtils; import com.jeecg.weibo.exception.BusinessException; public class WeiboUsersUtil { /* * * 获取@当前用户的最新微博的请求必填参数验证 * */ public static void getShowParmValidate(String access_token,String uid,String screen_name){ if(StringUtils.isE...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/util/WeiboSendUtil.java
src/main/java/com/jeecg/weibo/util/WeiboSendUtil.java
package com.jeecg.weibo.util; import java.net.URLEncoder; import com.alipay.api.internal.util.StringUtils; import com.jeecg.weibo.dto.WeiboSendDto; import com.jeecg.weibo.exception.BusinessException; public class WeiboSendUtil { /* * * 获取@当前用户的最新微博的请求必填参数验证 * */ public static void getSendParmValidate(We...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/exception/BusinessException.java
src/main/java/com/jeecg/weibo/exception/BusinessException.java
package com.jeecg.weibo.exception; public class BusinessException extends RuntimeException { private static final long serialVersionUID = 1L; public BusinessException(String message){ super(message); } public BusinessException(Throwable cause) { super(cause); } public BusinessException(String message,T...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/api/WeiboStatusesApi.java
src/main/java/com/jeecg/weibo/api/WeiboStatusesApi.java
package com.jeecg.weibo.api; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.jeecg.weibo.dto.WeiBoMentionsDto; import com.jeecg.weibo.dto.WeiboUserTimelineDto; import com.jeecg.weibo.exception.BusinessException; import ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/api/WeiboUsersApi.java
src/main/java/com/jeecg/weibo/api/WeiboUsersApi.java
package com.jeecg.weibo.api; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.jeecg.weibo.exception.BusinessException; import com.jeecg.weibo.util.HttpUtil; import com.jeecg.weibo.util.WeiboUsersUtil; public class Weibo...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/api/WeiboSendApi.java
src/main/java/com/jeecg/weibo/api/WeiboSendApi.java
package com.jeecg.weibo.api; import com.alipay.api.internal.util.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.JSONObject; import com.jeecg.weibo.dto.WeiboSendDto; import com.jeecg.weibo.exception.BusinessException; import com.jeecg.weibo.util.HttpUtil; import com.j...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/api/WeiboAccountApi.java
src/main/java/com/jeecg/weibo/api/WeiboAccountApi.java
package com.jeecg.weibo.api; import com.alipay.api.internal.util.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.JSONObject; import com.jeecg.weibo.exception.BusinessException; import com.jeecg.weibo.util.HttpUtil; public class WeiboAccountApi { private static final...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/api/WeiboCommentsApi.java
src/main/java/com/jeecg/weibo/api/WeiboCommentsApi.java
package com.jeecg.weibo.api; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.JSONObject; import com.jeecg.weibo.dto.WeiBoMentionsDto; import com.jeecg.weibo.exception.BusinessException; import com.jeecg.weibo.util.HttpUtil; import com.jeecg.weibo.util.WeiboCommentsUtil; public cl...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/api/WeiboFriendshipsApi.java
src/main/java/com/jeecg/weibo/api/WeiboFriendshipsApi.java
package com.jeecg.weibo.api; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.JSONObject; import com.jeecg.weibo.dto.WeiboFollowersDto; import com.jeecg.weibo.exception.BusinessException; import com.jeecg.weibo.util.HttpUtil; import com.jeecg.weibo.util.WeiboFollowersUtil; public ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/ai/JwAIApi.java
src/main/java/org/jeewx/api/ai/JwAIApi.java
package org.jeewx.api.ai; import java.io.BufferedReader; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.net.ConnectException; import java.net.Htt...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/ai/model/Voice.java
src/main/java/org/jeewx/api/ai/model/Voice.java
package org.jeewx.api.ai.model; public class Voice { /** * 口调用凭证 */ private String accessToken; /** * 文件格式 (只支持mp3,16k,单声道,最大1M) */ private String format; /** * 语音唯一标识 */ private String voice_id; /** * 语言,zh_CN 或 en_US,默认中文 非必填 */ private String lang; /** * 文件地址 */ private String file...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/Test.java
src/main/java/org/jeewx/api/wxstore/Test.java
package org.jeewx.api.wxstore; import java.util.ArrayList; import java.util.List; import org.jeewx.api.wxstore.deliveryMoney.JwDeliveryMoneyAPI; import org.jeewx.api.wxstore.deliveryMoney.model.DeliveryMoney; import org.jeewx.api.wxstore.deliveryMoney.model.DeliveryMoneyCustomInfo; import org.jeewx.api.wxstore.delive...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/JwShelfAPI.java
src/main/java/org/jeewx/api/wxstore/shelf/JwShelfAPI.java
package org.jeewx.api.wxstore.shelf; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import org.jeewx.api.core.common.JSONHelper; import org.jeewx.api.core.common.WxstoreUtils; import org.jeewx.api.wxstore.shelf.model.Shelf; import org.jeewx.api.wxstore....
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/EidCInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/EidCInfo.java
package org.jeewx.api.wxstore.shelf.model; public class EidCInfo { // 分组信息 private GroupCInfo group_info; // 控件3的ID private Integer eid; public GroupCInfo getGroup_info() { return group_info; } public void setGroup_info(GroupCInfo group_info) { this.group_info = group_info; } public Integer getEid() { ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/GroupInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/GroupInfo.java
package org.jeewx.api.wxstore.shelf.model; public class GroupInfo { // 该控件展示商品个数 private FilterInfo filter; // 分组ID private Integer group_id; public FilterInfo getFilter() { return filter; } public void setFilter(FilterInfo filter) { this.filter = filter; } public Integer getGroup_id() { return group_...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/ShelfRtnInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/ShelfRtnInfo.java
package org.jeewx.api.wxstore.shelf.model; public class ShelfRtnInfo { // 错误码 private String errcode; // 错误信息 private String errmsg; // 货架ID private Integer shelf_id; public String getErrcode() { return errcode; } public void setErrcode(String errcode) { this.errcode = errcode; } public String getErrm...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/GroupsInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/GroupsInfo.java
package org.jeewx.api.wxstore.shelf.model; public class GroupsInfo { // 分组ID private Integer group_id; public Integer getGroup_id() { return group_id; } public void setGroup_id(Integer group_id) { this.group_id = group_id; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/GroupInfos.java
src/main/java/org/jeewx/api/wxstore/shelf/model/GroupInfos.java
package org.jeewx.api.wxstore.shelf.model; import java.util.List; public class GroupInfos { // 分组ID private List<GroupsInfo> groups; public List<GroupsInfo> getGroups() { return groups; } public void setGroups(List<GroupsInfo> groups) { this.groups = groups; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/GroupEInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/GroupEInfo.java
package org.jeewx.api.wxstore.shelf.model; public class GroupEInfo { // 分组ID private Integer group_id; public Integer getGroup_id() { return group_id; } public void setGroup_id(Integer group_id) { this.group_id = group_id; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/GroupEInfos.java
src/main/java/org/jeewx/api/wxstore/shelf/model/GroupEInfos.java
package org.jeewx.api.wxstore.shelf.model; import java.util.List; public class GroupEInfos { // 分组ID private List<GroupEInfo> groups; public List<GroupEInfo> getGroups() { return groups; } public void setGroups(List<GroupEInfo> groups) { this.groups = groups; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/FilterInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/FilterInfo.java
package org.jeewx.api.wxstore.shelf.model; public class FilterInfo { // 该控件展示商品个数 private Integer count; public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/Shelf.java
src/main/java/org/jeewx/api/wxstore/shelf/model/Shelf.java
package org.jeewx.api.wxstore.shelf.model; public class Shelf { // 货架信息(数据说明详见《货架控件说明》)特别说明:货架信息使用要参考官方API文档说明 // 不同的货架对应的对象不同,分别是EidAInfo代表代表控件1,EidBInfo代表代表控件2... // 1,2,3,4可以相互搭配,5不能和1234搭配使用。shelf_data参数代表是按个控件就转换为对应的对象。 private Object shelf_data; // 货架招牌图片Url(图片需调用图片上传接口获得图片Url填写至此,否则添加货架失败, // 建议尺寸为640*120...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/GroupDInfos.java
src/main/java/org/jeewx/api/wxstore/shelf/model/GroupDInfos.java
package org.jeewx.api.wxstore.shelf.model; import java.util.List; public class GroupDInfos { // 分组ID private List<GroupDInfo> groups; public List<GroupDInfo> getGroups() { return groups; } public void setGroups(List<GroupDInfo> groups) { this.groups = groups; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/GroupCInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/GroupCInfo.java
package org.jeewx.api.wxstore.shelf.model; public class GroupCInfo { // 分组照片(图片需调用图片上传接口获得图片Url填写至此,否则添加货架失败,建议分辨率600*208) private String img; // 分组ID private Integer group_id; public String getImg() { return img; } public void setImg(String img) { this.img = img; } public Integer getGroup_id() { retu...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/GroupDInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/GroupDInfo.java
package org.jeewx.api.wxstore.shelf.model; public class GroupDInfo { // 分组照片(图片需调用图片上传接口获得图片Url填写至此,否则添加货架失败,建议分辨率600*208) private String img; // 分组ID private Integer group_id; public String getImg() { return img; } public void setImg(String img) { this.img = img; } public Integer getGroup_id() { retu...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/EidBInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/EidBInfo.java
package org.jeewx.api.wxstore.shelf.model; public class EidBInfo { // 分组数组 private GroupInfos group_infos; // 控件2的ID private Integer eid; public GroupInfos getGroup_infos() { return group_infos; } public void setGroup_infos(GroupInfos group_infos) { this.group_infos = group_infos; } public Integer getEi...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/EidEInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/EidEInfo.java
package org.jeewx.api.wxstore.shelf.model; public class EidEInfo { // 分组信息 private GroupEInfos group_infos; // 分组照片(图片需调用图片上传接口获得图片Url填写至此, // 否则添加货架失败,建议分辨率640*1008) private String img_background; // 控件5的ID private Integer eid; public GroupEInfos getGroup_infos() { return group_infos; } public void setG...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/EidDInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/EidDInfo.java
package org.jeewx.api.wxstore.shelf.model; public class EidDInfo { // 分组信息 private GroupDInfos group_infos; // 控件4的ID private Integer eid; public GroupDInfos getGroup_infos() { return group_infos; } public void setGroup_infos(GroupDInfos group_infos) { this.group_infos = group_infos; } public Integer ge...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/ShelfRInfos.java
src/main/java/org/jeewx/api/wxstore/shelf/model/ShelfRInfos.java
package org.jeewx.api.wxstore.shelf.model; import java.util.List; public class ShelfRInfos { // 货架信息(数据说明详见《货架控件说明》)特别说明:货架信息使用要参考官方API文档说明 private List<ShelfRInfo> shelves; public List<ShelfRInfo> getShelves() { return shelves; } public void setShelves(List<ShelfRInfo> shelves) { this.shelves = shelves; ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/ShelfRInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/ShelfRInfo.java
package org.jeewx.api.wxstore.shelf.model; public class ShelfRInfo { // 货架信息(数据说明详见《货架控件说明》)特别说明:货架信息使用要参考官方API文档说明 private Object shelf_info; // 货架招牌图片Url(图片需调用图片上传接口获得图片Url填写至此,否则添加货架失败, // 建议尺寸为640*120,仅控件1-4有banner,控件5没有banner) private String shelf_banner; // 货架名称 private String shelf_name; private Integer...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/shelf/model/EidAInfo.java
src/main/java/org/jeewx/api/wxstore/shelf/model/EidAInfo.java
package org.jeewx.api.wxstore.shelf.model; public class EidAInfo { // 分组信息 private GroupInfo group_info; // 控件1的ID private Integer eid; public GroupInfo getGroup_info() { return group_info; } public void setGroup_info(GroupInfo group_info) { this.group_info = group_info; } public Integer getEid() { re...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/deliveryMoney/JwDeliveryMoneyAPI.java
src/main/java/org/jeewx/api/wxstore/deliveryMoney/JwDeliveryMoneyAPI.java
package org.jeewx.api.wxstore.deliveryMoney; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import org.jeewx.api.core.common.JSONHelper; import org.jeewx.api.core.common.WxstoreUtils; import org.jeewx.api.wxstore.deliveryMoney.model.DeliveryMoney; impor...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/deliveryMoney/model/DeliveryMoneyRtnInfo.java
src/main/java/org/jeewx/api/wxstore/deliveryMoney/model/DeliveryMoneyRtnInfo.java
package org.jeewx.api.wxstore.deliveryMoney.model; public class DeliveryMoneyRtnInfo { // 错误码 private String errcode; // 错误信息 private String errmsg; // 邮费模板ID private Integer template_id; public String getErrcode() { return errcode; } public void setErrcode(String errcode) { this.errcode = errcode; } ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/deliveryMoney/model/DeliveryMoneyNormalInfo.java
src/main/java/org/jeewx/api/wxstore/deliveryMoney/model/DeliveryMoneyNormalInfo.java
package org.jeewx.api.wxstore.deliveryMoney.model; public class DeliveryMoneyNormalInfo { // 起始计费数量(比如计费单位是按件, 填2代表起始计费为2件) private Integer StartStandards; // 起始计费金额(单位: 分) private Integer StartFees; // 递增计费数量 private Integer AddStandards; // 递增计费金额(单位 : 分) private Integer AddFees; public Integer getStartSt...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/deliveryMoney/model/DeliveryMoneyCustomInfo.java
src/main/java/org/jeewx/api/wxstore/deliveryMoney/model/DeliveryMoneyCustomInfo.java
package org.jeewx.api.wxstore.deliveryMoney.model; public class DeliveryMoneyCustomInfo { // 起始计费数量 private Integer StartStandards; // 起始计费金额(单位: 分) private Integer StartFees; // 递增计费数量 private Integer AddStandards; // 递增计费金额(单位 : 分) private Integer AddFees; // 指定国家 private String DestCountry; // 指定省份 priv...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/deliveryMoney/model/DeliveryMoney.java
src/main/java/org/jeewx/api/wxstore/deliveryMoney/model/DeliveryMoney.java
package org.jeewx.api.wxstore.deliveryMoney.model; import java.util.List; public class DeliveryMoney { // 邮费模板名称 private String Name; // 支付方式(0-买家承担运费, 1-卖家承担运费) private Integer Assumer; // 计费单位(0-按件计费, 1-按重量计费, 2-按体积计费,目前只支持按件计费,默认为0) private Integer Valuation; // 具体运费计算 private List<DeliveryMoneyTopFreeInfo...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/deliveryMoney/model/DeliveryMoneyTopFreeInfo.java
src/main/java/org/jeewx/api/wxstore/deliveryMoney/model/DeliveryMoneyTopFreeInfo.java
package org.jeewx.api.wxstore.deliveryMoney.model; import java.util.List; public class DeliveryMoneyTopFreeInfo { // 快递类型ID private Integer Type; // 默认邮费计算方法 private DeliveryMoneyNormalInfo Normal; // 指定地区邮费计算方法 private List<DeliveryMoneyCustomInfo> Custom; public Integer getType() { return Type; } publi...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/JwProductAPI.java
src/main/java/org/jeewx/api/wxstore/product/JwProductAPI.java
package org.jeewx.api.wxstore.product; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import org.apache.commons.io.IOUtils; import org.jeewx.api.core.common.JSONHelper; import org.jeewx.api.core.common.WxstoreUtils; import org.jeewx.api.core.common.util...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/AttrExtLocation.java
src/main/java/org/jeewx/api/wxstore/product/model/AttrExtLocation.java
package org.jeewx.api.wxstore.product.model; public class AttrExtLocation { // 国家 private String country; // 省份 private String province; // 城市 private String city; // 地址 private String address; public String getCountry() { return country; } public void setCountry(String country) { this.country = count...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/Product.java
src/main/java/org/jeewx/api/wxstore/product/model/Product.java
package org.jeewx.api.wxstore.product.model; import java.util.List; public class Product { // 商品id private String product_id; // 基本属性 private AttrInfo product_base; // sku信息列表 private List<Sku> sku_list; // 商品其他属性 private AttrExt attrext; // 运费信息 private DeliveryInfo delivery_info; // 状态 private Integer s...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/SkuValue.java
src/main/java/org/jeewx/api/wxstore/product/model/SkuValue.java
package org.jeewx.api.wxstore.product.model; public class SkuValue { // vid private String id; // vid名称 private String name; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = n...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/PropertiesInfo.java
src/main/java/org/jeewx/api/wxstore/product/model/PropertiesInfo.java
package org.jeewx.api.wxstore.product.model; import java.util.List; public class PropertiesInfo { // 属性id private String id; // 属性名称 private String name; // 属性值 private List<PropertiesValue> property_value; public String getId() { return id; } public void setId(String id) { this.id = id; } public Str...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/AttrInfoProperty.java
src/main/java/org/jeewx/api/wxstore/product/model/AttrInfoProperty.java
package org.jeewx.api.wxstore.product.model; public class AttrInfoProperty { // 属性id private String id; // 属性值id private String vid; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getVid() { return vid; } public void setVid(String vid) { this.vid ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/Sku.java
src/main/java/org/jeewx/api/wxstore/product/model/Sku.java
package org.jeewx.api.wxstore.product.model; public class Sku { // sku信息 private String sku_id; // 商家商品编码 private String product_code; // icon图片 private String icon_url; // sku原价 private Integer ori_price; // sku微信价 private Integer price; // sku库存 private Integer quantity; public String getSku_id() { ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/PropertiesValue.java
src/main/java/org/jeewx/api/wxstore/product/model/PropertiesValue.java
package org.jeewx.api.wxstore.product.model; public class PropertiesValue { // 属性值id private String id; // 属性值名称 private String name; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/AttrInfoDetail.java
src/main/java/org/jeewx/api/wxstore/product/model/AttrInfoDetail.java
package org.jeewx.api.wxstore.product.model; public class AttrInfoDetail { // 文字描述 private String text; // 图片 private String img; public String getText() { return text; } public void setText(String text) { this.text = text; } public String getImg() { return img; } public void setImg(String img) { ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/AttrInfo.java
src/main/java/org/jeewx/api/wxstore/product/model/AttrInfo.java
package org.jeewx.api.wxstore.product.model; import java.util.List; public class AttrInfo { // 商品名称 private String name; // 商品分类id private List<String> category_id; // 商品主图 private String main_img; // 商品图片列表 private List<String> img; // 商品详情列表 private List<AttrInfoDetail> detail; // 商品属性列表List private Lis...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/SkuInfo.java
src/main/java/org/jeewx/api/wxstore/product/model/SkuInfo.java
package org.jeewx.api.wxstore.product.model; import java.util.List; public class SkuInfo { // sku id private String id; // sku 名称 private String name; // sku vid列表 private List<SkuValue> value_list; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getN...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/DeliveryInfo.java
src/main/java/org/jeewx/api/wxstore/product/model/DeliveryInfo.java
package org.jeewx.api.wxstore.product.model; import java.util.List; public class DeliveryInfo { // 运费类型 private Integer delivery_type; // 邮费模板ID private Integer template_id; // 快递 private List<DeliveryInfoExpress> express; // private Integer weight; // private Integer volume; public Integer getWeight()...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/AttrExt.java
src/main/java/org/jeewx/api/wxstore/product/model/AttrExt.java
package org.jeewx.api.wxstore.product.model; public class AttrExt { // 是否包邮 private Integer isPostFree; // 是否提供发票 private Integer isHasReceipt; // 是否保修 private Integer isUnderGuaranty; // 是否支持退换货 private Integer isSupportReplace; // 商品所在地地址 private AttrExtLocation location; public Integer getIsPostFree() { ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/CateInfo.java
src/main/java/org/jeewx/api/wxstore/product/model/CateInfo.java
package org.jeewx.api.wxstore.product.model; public class CateInfo { // 子分类ID private String id; // 子分类名称 private String name; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name =...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/AttrInfoSku.java
src/main/java/org/jeewx/api/wxstore/product/model/AttrInfoSku.java
package org.jeewx.api.wxstore.product.model; public class AttrInfoSku { // sku属性id private String id; // sku值 private String vid; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getVid() { return vid; } public void setVid(String vid) { this.vid = v...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/CommodityRtnInfo.java
src/main/java/org/jeewx/api/wxstore/product/model/CommodityRtnInfo.java
package org.jeewx.api.wxstore.product.model; public class CommodityRtnInfo { // 错误码 private String errcode; // 错误信息 private String errmsg; // 商品ID private String product_id; public String getErrcode() { return errcode; } public void setErrcode(String errcode) { this.errcode = errcode; } public String ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/product/model/DeliveryInfoExpress.java
src/main/java/org/jeewx/api/wxstore/product/model/DeliveryInfoExpress.java
package org.jeewx.api.wxstore.product.model; public class DeliveryInfoExpress { // 快递ID private Integer id; // 运费 private Integer price; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getPrice() { return price; } public void setPrice(Integer pric...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/stock/JwStockAPI.java
src/main/java/org/jeewx/api/wxstore/stock/JwStockAPI.java
package org.jeewx.api.wxstore.stock; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import org.jeewx.api.core.common.WxstoreUtils; import org.jeewx.api.wxstore.stock.model.StockInfo; import org.jeewx.api.wxstore.stock.model.StockRtnInfo; /** * 微信小店 - 库存 * @author zhangdaihao * */ publi...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/stock/model/StockRtnInfo.java
src/main/java/org/jeewx/api/wxstore/stock/model/StockRtnInfo.java
package org.jeewx.api.wxstore.stock.model; public class StockRtnInfo { // 错误码 private String errcode; // 错误信息 private String errmsg; public String getErrcode() { return errcode; } public void setErrcode(String errcode) { this.errcode = errcode; } public String getErrmsg() { return errmsg; } public v...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/stock/model/StockInfo.java
src/main/java/org/jeewx/api/wxstore/stock/model/StockInfo.java
package org.jeewx.api.wxstore.stock.model; public class StockInfo { // 商品ID private String product_id; // sku信息 private String sku_info; // 库存数量 private Integer quantity; public String getProduct_id() { return product_id; } public void setProduct_id(String product_id) { this.product_id = product_id; } ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/group/JwGroupManangerAPI.java
src/main/java/org/jeewx/api/wxstore/group/JwGroupManangerAPI.java
package org.jeewx.api.wxstore.group; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import org.jeewx.api.core.common.JSONHelper; import org.jeewx.api.core.common.WxstoreUtils; import org.jeewx.api.wxstore.group.model.Group; import org.jeewx.api.wxstore....
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/group/model/GroupProduct.java
src/main/java/org/jeewx/api/wxstore/group/model/GroupProduct.java
package org.jeewx.api.wxstore.group.model; public class GroupProduct { // 商品ID private String product_id; // 修改操作(0-删除, 1-增加) private Integer mod_action; public String getProduct_id() { return product_id; } public void setProduct_id(String product_id) { this.product_id = product_id; } public Integer ge...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/group/model/GroupRtnInfo.java
src/main/java/org/jeewx/api/wxstore/group/model/GroupRtnInfo.java
package org.jeewx.api.wxstore.group.model; public class GroupRtnInfo { // 错误码 private Integer errcode; // 错误信息 private String errmsg; // 分组ID private Integer group_id; public Integer getErrcode() { return errcode; } public void setErrcode(Integer errcode) { this.errcode = errcode; } public String get...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/group/model/GroupProductInfo.java
src/main/java/org/jeewx/api/wxstore/group/model/GroupProductInfo.java
package org.jeewx.api.wxstore.group.model; import java.util.List; public class GroupProductInfo { // 分组ID private Integer group_id; // 分组的商品集合 private List<GroupProduct> product; public Integer getGroup_id() { return group_id; } public void setGroup_id(Integer group_id) { this.group_id = group_id; } p...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/group/model/GroupDetailInfo.java
src/main/java/org/jeewx/api/wxstore/group/model/GroupDetailInfo.java
package org.jeewx.api.wxstore.group.model; import java.util.List; public class GroupDetailInfo { // 分组名称 private String group_id; // 分组名称 private String group_name; // 商品ID集合 private List<String> product_list; public String getGroup_id() { return group_id; } public void setGroup_id(String group_id) { t...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/group/model/Group.java
src/main/java/org/jeewx/api/wxstore/group/model/Group.java
package org.jeewx.api.wxstore.group.model; public class Group { // 分组详细 private GroupDetailInfo group_detail; // 分组D private Integer group_id; // 分组名称 private String group_name; public GroupDetailInfo getGroup_detail() { return group_detail; } public void setGroup_detail(GroupDetailInfo group_detail) { ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/order/JwOrderManagerAPI.java
src/main/java/org/jeewx/api/wxstore/order/JwOrderManagerAPI.java
package org.jeewx.api.wxstore.order; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import org.jeewx.api.core.common.JSONHelper; import org.jeewx.api.core.common.WxstoreUtils; import org.jeewx.api.wxstore.order.model.OrderDelivery; import org.jeewx.api....
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/order/model/OrderDelivery.java
src/main/java/org/jeewx/api/wxstore/order/model/OrderDelivery.java
package org.jeewx.api.wxstore.order.model; public class OrderDelivery { // 订单ID private String order_id; // 物流公司ID private String delivery_company; // 运单ID private String delivery_track_no; // 商品是否需要物流(0-不需要,1-需要,无该字段默认为需要物流) private Integer need_delivery; // 是否是提供的物流公司 private Integer is_others; public S...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/order/model/OrderInfo.java
src/main/java/org/jeewx/api/wxstore/order/model/OrderInfo.java
package org.jeewx.api.wxstore.order.model; public class OrderInfo { // 订单ID private String order_id; // 订单状态 private Integer order_status; // 订单总价格(单位 : 分) private Integer order_total_price; // 订单创建时间 private Integer order_create_time; // 订单运费价格(单位 : 分) private Integer order_express_price; // 买家微信OPENID pr...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/order/model/OrderPara.java
src/main/java/org/jeewx/api/wxstore/order/model/OrderPara.java
package org.jeewx.api.wxstore.order.model; public class OrderPara { // 订单状态(不带该字段-全部状态, 2-待发货, 3-已发货, 5-已完成, 8-维权中, ) private Integer status; // 订单创建时间起始时间(不带该字段则不按照时间做筛选) private Integer begintime; // 订单创建时间终止时间(不带该字段则不按照时间做筛选) private Integer endtime; public Integer getStatus() { return status; } public...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/wxstore/order/model/OrderRtnInfo.java
src/main/java/org/jeewx/api/wxstore/order/model/OrderRtnInfo.java
package org.jeewx.api.wxstore.order.model; public class OrderRtnInfo { // 错误码 private Integer errcode; // 错误信息 private String errmsg; public Integer getErrcode() { return errcode; } public void setErrcode(Integer errcode) { this.errcode = errcode; } public String getErrmsg() { return errmsg; } publ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/custservice/Test.java
src/main/java/org/jeewx/api/custservice/Test.java
package org.jeewx.api.custservice; import java.util.Date; import java.util.Iterator; import java.util.List; import org.jeewx.api.core.common.AccessToken; import org.jeewx.api.custservice.multicustservice.JwMultiCustomerAPI; import org.jeewx.api.custservice.multicustservice.model.ChatRecord; public class Test { p...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/custservice/multicustservice/JwMultiCustomerAPI.java
src/main/java/org/jeewx/api/custservice/multicustservice/JwMultiCustomerAPI.java
package org.jeewx.api.custservice.multicustservice; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import org.jeewx.api.core.common.JSONHelper; import org.jeewx.api.core.common.WxstoreUtils; import org.jeewx.api.custservice.multicustservice.model.ChatRecord; import org.jeewx.api.custser...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/custservice/multicustservice/model/ChatRecord.java
src/main/java/org/jeewx/api/custservice/multicustservice/model/ChatRecord.java
package org.jeewx.api.custservice.multicustservice.model; import org.jeewx.api.core.req.model.WeixinReqParam; /** * 客服聊天记录 * @author caojm */ public class ChatRecord extends WeixinReqParam{ //客服帐号 private String worker = ""; //用户标识 private String openId = ""; /** * 操作ID ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/custservice/multicustservice/model/CustService.java
src/main/java/org/jeewx/api/custservice/multicustservice/model/CustService.java
package org.jeewx.api.custservice.multicustservice.model; import org.jeewx.api.core.req.model.WeixinReqParam; /** * 客户服务人员 * @author caojm * */ public class CustService extends WeixinReqParam{ //完整客服账号,格式为:账号前缀@公众号微信号 private String kfAccount = ""; //客服在线状态 1:pc在线,2:手机在线。若pc和手机同时在线则为 1+2=3 ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/JwCardConsumeAPITest.java
src/main/java/org/jeewx/api/coupon/JwCardConsumeAPITest.java
package org.jeewx.api.coupon; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Random; import org.jeewx.api.coupon.consume.JwCardConsumeAPI; import org.jeewx.api.coupon.consume.model.ConsumeRtnInfo; import org.jeewx.api.coupon.consume.model.EncryptRtn...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/JwCardManageAPITest.java
src/main/java/org/jeewx/api/coupon/JwCardManageAPITest.java
package org.jeewx.api.coupon; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Random; import org.jeewx.api.core.common.AccessToken; import org.jeewx.api.core.exception.WexinReqException; import org.jeewx.api.coupon.manage.JwCardManageAPI; import org....
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/consume/JwCardConsumeAPI.java
src/main/java/org/jeewx/api/coupon/consume/JwCardConsumeAPI.java
package org.jeewx.api.coupon.consume; import com.alibaba.fastjson.JSONObject; import org.jeewx.api.core.common.WxstoreUtils; import org.jeewx.api.coupon.consume.model.ConsumeRtnInfo; import org.jeewx.api.coupon.consume.model.EncryptRtnInfo; /** * 微信卡券 - 核销接口 * @author mcl * @version v1.0 */ public class JwCardCon...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/consume/model/ConsumeRtnInfoCard.java
src/main/java/org/jeewx/api/coupon/consume/model/ConsumeRtnInfoCard.java
package org.jeewx.api.coupon.consume.model; public class ConsumeRtnInfoCard { // 核销卡券id. private String card_id; public String getCard_id() { return card_id; } public void setCard_id(String card_id) { this.card_id = card_id; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/consume/model/EncryptRtnInfo.java
src/main/java/org/jeewx/api/coupon/consume/model/EncryptRtnInfo.java
package org.jeewx.api.coupon.consume.model; public class EncryptRtnInfo { // 错误码 private String errcode; // 错误信息 private String errmsg; // 卡券真实序列号 private String code; public String getErrcode() { return errcode; } public void setErrcode(String errcode) { this.errcode = errcode; } public String getEr...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/consume/model/ConsumeRtnInfo.java
src/main/java/org/jeewx/api/coupon/consume/model/ConsumeRtnInfo.java
package org.jeewx.api.coupon.consume.model; public class ConsumeRtnInfo { // 错误码 private String errcode; // 错误信息 private String errmsg; // 核销卡券信息仅包含card_id private ConsumeRtnInfoCard card; // 核销卡券所属用户id(用户和公众号之间的唯一标识) private String openid; public String getErrcode() { return errcode; } public void setE...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/CardConsts.java
src/main/java/org/jeewx/api/coupon/manage/CardConsts.java
package org.jeewx.api.coupon.manage; public class CardConsts { /** * 卡券类型. */ public static class CardType { // 通用券 public static final String generalCoupon = "GENERAL_COUPON"; // 团购券 public static final String groupon = "GROUPON"; // 折扣券 public static final String discount = "DISCOUNT"; // 礼品券 p...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/JwCardManageAPI.java
src/main/java/org/jeewx/api/coupon/manage/JwCardManageAPI.java
package org.jeewx.api.coupon.manage; import com.alibaba.fastjson.JSONObject; import org.jeewx.api.core.common.WxstoreUtils; import org.jeewx.api.coupon.manage.model.*; /** * 微信卡券 - 基础管理 * @author mcl * @version v1.0 */ public class JwCardManageAPI { // 删除卡券 private static final String del_card_url = "https://a...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/BoardingPassUpdate.java
src/main/java/org/jeewx/api/coupon/manage/model/BoardingPassUpdate.java
package org.jeewx.api.coupon.manage.model; /** * 可以被更新的飞机票信息。 * * @author mcl * @version v1.0 */ public class BoardingPassUpdate { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfoUpdate base_info; // 起飞时间。Unix 时间戳格式。 private Long departure_time; // 降落时间。Unix 时间戳格式。 private Long landing_time; private String gate; /...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/CommCardRtnInfo.java
src/main/java/org/jeewx/api/coupon/manage/model/CommCardRtnInfo.java
package org.jeewx.api.coupon.manage.model; public class CommCardRtnInfo { // 错误码 private String errcode; // 错误信息 private String errmsg; public String getErrcode() { return errcode; } public void setErrcode(String errcode) { this.errcode = errcode; } public String getErrmsg() { return errmsg; } pub...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/BatchGetCardRtnInfo.java
src/main/java/org/jeewx/api/coupon/manage/model/BatchGetCardRtnInfo.java
package org.jeewx.api.coupon.manage.model; import java.util.List; public class BatchGetCardRtnInfo { // 错误码 private String errcode; // 错误信息 private String errmsg; // 卡id 列表 private List<String> card_id_list; // 该商户名下card_id 总数 private Integer total_num; public String getErrcode() { return errcode; } pu...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/LuckyMoney.java
src/main/java/org/jeewx/api/coupon/manage/model/LuckyMoney.java
package org.jeewx.api.coupon.manage.model; /** * 红包。 * * @author mcl * @version v1.0 */ public class LuckyMoney { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfo base_info; public BaseInfo getBase_info() { return base_info; } public void setBase_info(BaseInfo base_info) { this.base_info = base_info; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/ScenicTicket.java
src/main/java/org/jeewx/api/coupon/manage/model/ScenicTicket.java
package org.jeewx.api.coupon.manage.model; /** * 门票。 * * @author mcl * @version v1.0 */ public class ScenicTicket { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfo base_info; // 票类型,例如平日全票,套票等 private String ticket_class; // 导览图url。 private String guide_url; public BaseInfo getBase_info() { return base_info; }...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/Discount.java
src/main/java/org/jeewx/api/coupon/manage/model/Discount.java
package org.jeewx.api.coupon.manage.model; /** * 折扣券。 * * @author mcl * @version v1.0 */ public class Discount { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfo base_info; // 折扣券专用,表示打折额度(百分比)。填 30 就是七折。 private Float discount; public BaseInfo getBase_info() { return base_info; } public void setBase_info(BaseI...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/MovieTicket.java
src/main/java/org/jeewx/api/coupon/manage/model/MovieTicket.java
package org.jeewx.api.coupon.manage.model; /** * 电影票。 * * @author mcl * @version v1.0 */ public class MovieTicket { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfo base_info; // 电影票详情 private String detail; public BaseInfo getBase_info() { return base_info; } public void setBase_info(BaseInfo base_info) { t...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/MeetingTicket.java
src/main/java/org/jeewx/api/coupon/manage/model/MeetingTicket.java
package org.jeewx.api.coupon.manage.model; /** * 会议门票。 * * @author mcl * @version v1.0 */ public class MeetingTicket { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfo base_info; // 会议详情 private String meeting_detail; // 会场导览图 private String map_url; public BaseInfo getBase_info() { return base_info; } public...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/ScenicTicketUpdate.java
src/main/java/org/jeewx/api/coupon/manage/model/ScenicTicketUpdate.java
package org.jeewx.api.coupon.manage.model; /** * 可以被更新的门票信息。 * * @author mcl * @version v1.0 */ public class ScenicTicketUpdate { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfoUpdate base_info; // 导览图url。 private String guide_url; public BaseInfoUpdate getBase_info() { return base_info; } public void setBase_in...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/MovieTicketUpdate.java
src/main/java/org/jeewx/api/coupon/manage/model/MovieTicketUpdate.java
package org.jeewx.api.coupon.manage.model; /** * 可以被更新的电影票信息。 * * @author mcl * @version v1.0 */ public class MovieTicketUpdate { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfoUpdate base_info; // 电影票详情 private String detail; public BaseInfoUpdate getBase_info() { return base_info; } public void setBase_in...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/Sku.java
src/main/java/org/jeewx/api/coupon/manage/model/Sku.java
package org.jeewx.api.coupon.manage.model; /** * 卡券相关的商品信息 * @author mcl * @version v1.0 */ public class Sku { //库存数量。 private Integer quantity; public Integer getQuantity() { return quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/GetCardRtnInfoCard.java
src/main/java/org/jeewx/api/coupon/manage/model/GetCardRtnInfoCard.java
package org.jeewx.api.coupon.manage.model; public class GetCardRtnInfoCard { //卡券ID private String card_id; //起始使用时间 private long begin_time; //结束时间 private long end_time; public String getCard_id() { return card_id; } public void setCard_id(String card_id) { this.card_id = card_id; } public long get...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/GetCardDetailRtnInfo.java
src/main/java/org/jeewx/api/coupon/manage/model/GetCardDetailRtnInfo.java
package org.jeewx.api.coupon.manage.model; public class GetCardDetailRtnInfo { // 错误码 private String errcode; // 错误信息 private String errmsg; // 卡券详细信息 private Card card; public String getErrcode() { return errcode; } public void setErrcode(String errcode) { this.errcode = errcode; } public String get...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/MeetingTicketUpdate.java
src/main/java/org/jeewx/api/coupon/manage/model/MeetingTicketUpdate.java
package org.jeewx.api.coupon.manage.model; /** * 可以被更新的会议门票信息。 * @author mcl * @version v1.0 */ public class MeetingTicketUpdate { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfoUpdate base_info; // 会场导览图 private String map_url; public BaseInfoUpdate getBase_info() { return base_info; } public void setBase_info(Ba...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/MemberCardUpdate.java
src/main/java/org/jeewx/api/coupon/manage/model/MemberCardUpdate.java
package org.jeewx.api.coupon.manage.model; /** * 可以被更新的会员卡信息。 * * @author mcl * @version v1.0 */ public class MemberCardUpdate { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfoUpdate base_info; // 积分清零规则 private String bonus_cleared; // 积分规则 private String bonus_rules; // 储值说明 private String balance_rules; // 特权...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/GeneralCoupon.java
src/main/java/org/jeewx/api/coupon/manage/model/GeneralCoupon.java
package org.jeewx.api.coupon.manage.model; /** * 通用券。 * @author mcl * @version v1.0 */ public class GeneralCoupon { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfo base_info; // 描述文本。 private String default_detail; public BaseInfo getBase_info() { return base_info; } public void setBase_info(BaseInfo base_info) ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/GetCardRtnInfo.java
src/main/java/org/jeewx/api/coupon/manage/model/GetCardRtnInfo.java
package org.jeewx.api.coupon.manage.model; public class GetCardRtnInfo { // 错误码 private String errcode; // 错误信息 private String errmsg; // 用户openid private String openid; // 卡券相关信息 private GetCardRtnInfoCard card; public String getErrcode() { return errcode; } public void setErrcode(String errcode) { t...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/Cash.java
src/main/java/org/jeewx/api/coupon/manage/model/Cash.java
package org.jeewx.api.coupon.manage.model; /** * 代金券。 * * @author mcl * @version v1.0 */ public class Cash { // 基本的卡券数据,见下表,所有卡券通用 private BaseInfo base_info; // 代金券专用,表示起用金额(单位为分)。 private Integer least_cost; // 代金券专用,表示减免金额(单位为分)。 private Integer reduce_cost; public BaseInfo getBase_info() { return b...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/org/jeewx/api/coupon/manage/model/BaseInfoUpdate.java
src/main/java/org/jeewx/api/coupon/manage/model/BaseInfoUpdate.java
package org.jeewx.api.coupon.manage.model; import java.util.List; /** * 可以被更新的卡券基础数据. * @author mcl * @version v1.0 */ public class BaseInfoUpdate { // 卡券的商户logo private String logo_url; // 使用提醒。(一句话描述,展示在首页) private String notice; // 使用说明。长文本描述,可以分行。 private String description; // 客服电话 private String serv...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false