用户状态部分修改

This commit is contained in:
liuyingfang
2023-07-13 15:29:09 +08:00
parent 67c4a1e858
commit 89329bcd5a
13 changed files with 136 additions and 37 deletions

View File

@@ -44,4 +44,8 @@ public class AppletStore {
*小程序appId
*/
private String appId;
/**
* 微信版本 0-正式版; 1-测试版; 2-体验版
*/
private Integer WxType;
}

View File

@@ -342,6 +342,9 @@ public class UserApp {
@TableField(exist = false)
private String minFee;
@TableField(exist = false)
private String isExtend;
// /**
// * 有效状态 1有效 -1无效
// */

View File

@@ -5,8 +5,7 @@ import lombok.Getter;
public enum image {
SMALL_IMAGE("小微","https://czg-oss.oss-cn-hangzhou.aliyuncs.com/app/statics/%E5%B0%8F%E5%BE%AE.png",""),
PROMOTION_IMAGE("推广","https://czg-oss.oss-cn-hangzhou.aliyuncs.com/app/statics/%E5%95%86%E6%88%B7%E6%8E%A8%E5%B9%BF.png",""),
OTHER_IMAGE("其他","\n" +
"https://czg-oss.oss-cn-hangzhou.aliyuncs.com/app/statics/%E6%99%AE%E9%80%9A%E5%95%86%E6%88%B7%E6%8E%A8%E5%B9%BF.png","");
OTHER_IMAGE("其他","https://czg-oss.oss-cn-hangzhou.aliyuncs.com/app/statics/%E6%99%AE%E9%80%9A%E5%95%86%E6%88%B7%E6%8E%A8%E5%B9%BF.png","");
/**
* 通道值

View File

@@ -24,7 +24,7 @@ public class AppletStoreVO {
/**
* 小程序跳转地址
*/
private String url;
private String path;
/**
* 用户是否开通 0未开通 1已开通
*/
@@ -32,5 +32,13 @@ public class AppletStoreVO {
/**
*小程序appId
*/
private String appId;
private String ghappId;
/**
* 微信版本 0-正式版; 1-测试版; 2-体验版
*/
private Integer wxType = 0;
/**
* 小程序店铺Id
*/
private Integer appletStoreId;
}