补充推送

This commit is contained in:
liuyingfang 2023-07-01 14:27:37 +08:00
parent 8e0583b460
commit ea78207be0
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
package cn.pluss.platform.enums;
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/%E6%8E%A8%E5%B9%BF%E5%AE%BD%E5%9B%BE.png",""),
OTHER_IMAGE("其他","https://czg-oss.oss-cn-hangzhou.aliyuncs.com/app/statics/%E5%95%86%E6%88%B7%E6%8E%A8%E5%B9%BF.png","");
/**
* 通道值
*/
@Getter
String name;
/**
* 图片url
*/
@Getter
String imageUrl;
/**
* 跳转地址
*/
@Getter
String jumpUrl;
image(String name, String imageUrl, String jumpUrl){
this.name = name;
this.imageUrl = imageUrl;
this.jumpUrl = jumpUrl;
}
}