package com.doumee.dao.web.reqeust;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2024/7/25 10:35
|
*/
|
@Data
|
public class GenerateQRCodeRequest {
|
|
|
@ApiModelProperty(value = "业务类型:0:产品;1:案例;2:实景")
|
private Integer businessType;
|
|
@ApiModelProperty(value = "业务主键")
|
private String businessId;
|
|
@ApiModelProperty(value = "iam编码")
|
private String iamId;
|
|
@ApiModelProperty(value = "跳转地址",hidden = true)
|
private String path;
|
|
|
|
|
|
|
}
|