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

cn.com.antcloud.api.ato.v1_0.response.AllSignTemplateResponse 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.response;

import cn.com.antcloud.api.product.AntCloudProdResponse;
import java.lang.String;

/**
 * 电子合同签署的合同模板查询服务 */
public class AllSignTemplateResponse extends AntCloudProdResponse {
  private String templateList;

  /**
   * List格式,详细参考:
   * [
   *         {
   *             "templateCode": "TEST_001",
   *             "tenantId": "BIPCCOQY",
   *             "agreementType": "SERVICE_LEASE",
   *             "fileName": "测试模板之协议签署证明",
   *             "templateId": "f28038577d664015bfc1034c4a125121",
   *             "fieldArgs": "{\"sceneName\":\"测试协议合同签署\",\"title\":\"这是一份证明协议\"}",
   *             "userPos": "[{\"required\":true,\"posPage\":\"1\",\"posX\":\"162.44\",\"posY\":\"425\"}]",
   *             "orgPos": "[{\"required\":true,\"posPage\":\"1\",\"posX\":\"449.99\",\"posY\":\"420.03\"}]"
   *         }
   *     ] */
  public String getTemplateList() {
    return this.templateList;
  }

  /**
   * List格式,详细参考:
   * [
   *         {
   *             "templateCode": "TEST_001",
   *             "tenantId": "BIPCCOQY",
   *             "agreementType": "SERVICE_LEASE",
   *             "fileName": "测试模板之协议签署证明",
   *             "templateId": "f28038577d664015bfc1034c4a125121",
   *             "fieldArgs": "{\"sceneName\":\"测试协议合同签署\",\"title\":\"这是一份证明协议\"}",
   *             "userPos": "[{\"required\":true,\"posPage\":\"1\",\"posX\":\"162.44\",\"posY\":\"425\"}]",
   *             "orgPos": "[{\"required\":true,\"posPage\":\"1\",\"posX\":\"449.99\",\"posY\":\"420.03\"}]"
   *         }
   *     ] */
  public void setTemplateList(String templateList) {
    this.templateList = templateList;
  }
}