cn.com.antcloud.api.ato.v1_0.model.ApplicationInfo Maven / Gradle / Ivy
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.ato.v1_0.model;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 应用信息 */
public class ApplicationInfo {
@NotNull
private String applicationScene;
@NotNull
private String tinyAppId;
@NotNull
private String siteName;
@NotNull
private String sitUrl;
@NotNull
private String merchantName;
@NotNull
private String merchantServiceName;
@NotNull
private String merchantServiceDesc;
/**
* 应用场景
* MINI_APP 小程序
* APP 自有app
* ALL 两种都有 */
public String getApplicationScene() {
return this.applicationScene;
}
/**
* 应用场景
* MINI_APP 小程序
* APP 自有app
* ALL 两种都有 */
public void setApplicationScene(String applicationScene) {
this.applicationScene = applicationScene;
}
/**
* 小程序id */
public String getTinyAppId() {
return this.tinyAppId;
}
/**
* 小程序id */
public void setTinyAppId(String tinyAppId) {
this.tinyAppId = tinyAppId;
}
/**
* 小程序名称 */
public String getSiteName() {
return this.siteName;
}
/**
* 小程序名称 */
public void setSiteName(String siteName) {
this.siteName = siteName;
}
/**
* 网站地址 */
public String getSitUrl() {
return this.sitUrl;
}
/**
* 网站地址 */
public void setSitUrl(String sitUrl) {
this.sitUrl = sitUrl;
}
/**
* 商户名称。
* 修改后的商户名称,将同步支付宝代扣签约页面字段展示 */
public String getMerchantName() {
return this.merchantName;
}
/**
* 商户名称。
* 修改后的商户名称,将同步支付宝代扣签约页面字段展示 */
public void setMerchantName(String merchantName) {
this.merchantName = merchantName;
}
/**
* 商户服务名称。
* 修改后的商户服务名称,将同步支付宝代扣签约页面字段展示 */
public String getMerchantServiceName() {
return this.merchantServiceName;
}
/**
* 商户服务名称。
* 修改后的商户服务名称,将同步支付宝代扣签约页面字段展示 */
public void setMerchantServiceName(String merchantServiceName) {
this.merchantServiceName = merchantServiceName;
}
/**
* 商户服务描述。
* 修改后的商户服务描述,将同步支付宝代扣签约页面字段展示 */
public String getMerchantServiceDesc() {
return this.merchantServiceDesc;
}
/**
* 商户服务描述。
* 修改后的商户服务描述,将同步支付宝代扣签约页面字段展示 */
public void setMerchantServiceDesc(String merchantServiceDesc) {
this.merchantServiceDesc = merchantServiceDesc;
}
}