|
|
|
@@ -94,27 +94,36 @@ public class WxActivity extends BaseEntity { |
|
|
|
|
|
|
|
|
|
|
|
@Transient |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "小程序路径", name = "weappPath") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "报名小程序路径", name = "weappPath") |
|
|
|
protected String weappPath; |
|
|
|
|
|
|
|
@Transient |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "报名二维码", name = "weappSceneForJoin") |
|
|
|
protected String weappSceneForJoin; |
|
|
|
|
|
|
|
public String getWeappSceneForSign() { |
|
|
|
public String getWeappPath() { |
|
|
|
return "pages/index/index?type=ra&id=" + id; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWeappSceneForJoin() { |
|
|
|
return "t:ra:" + id; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Transient |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "签到小程序路径", name = "weappPath") |
|
|
|
protected String weappPathForSign; |
|
|
|
|
|
|
|
@Transient |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "签到二维码", name = "weappSceneForSign") |
|
|
|
protected String weappSceneForSign; |
|
|
|
|
|
|
|
public String getWeappPath() { |
|
|
|
return "pages/index/index?type=ra&id=" + id; |
|
|
|
public String getWeappPathForSign() { |
|
|
|
return "pages/index/index?type=si&id=" + id; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWeappSceneForJoin() { |
|
|
|
return "t:ra:" + id; |
|
|
|
public String getWeappSceneForSign() { |
|
|
|
return "t:si:" + id; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|