package com.nuvole.util.pay.allinPay.yunst;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.NoArgsConstructor;
|
|
/**
|
* 云商通公共参数
|
*
|
* @Author: lc
|
* @Date: 2019/10/15 14:13
|
*/
|
@NoArgsConstructor
|
@ApiModel(value = "公共参数(通联云商通)")
|
public class YunStParam {
|
|
@ApiModelProperty("行业代码")
|
public static String industryCode = "1910";
|
|
@ApiModelProperty("行业名称")
|
public static String industryName = "其他";
|
|
@ApiModelProperty("访问终端类型【 1:mobile 2:PC 】")
|
public static Long source = 2L;
|
|
}
|