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

org.scene.wx.provider.param.WxQrCodeParam Maven / Gradle / Ivy

package org.scene.wx.provider.param;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
import org.hibernate.validator.constraints.Length;

import java.io.Serializable;

/**
 * Auth: Alexander Lo
 * Date: 2020/9/3
 * Description:
 */

@Data
@Accessors(chain = true)
@ApiModel(value = "微信生成二维码")
public class WxQrCodeParam implements Serializable {

    @ApiModelProperty(value = "场景值", notes = "场景值", example = "id:998")
    @Length(max = 32)
    private String scene;

    @ApiModelProperty(value = "指向的页面", notes = "指向的页面", example = "pages/index/index")
    private String page;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy