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

com.aliyun.dingtalkworkflow_1_0.models.QueryFormByBizTypeResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkflow_1_0.models;

import com.aliyun.tea.*;

public class QueryFormByBizTypeResponseBody extends TeaModel {
    // 模板列表
    @NameInMap("result")
    public java.util.List result;

    public static QueryFormByBizTypeResponseBody build(java.util.Map map) throws Exception {
        QueryFormByBizTypeResponseBody self = new QueryFormByBizTypeResponseBody();
        return TeaModel.build(map, self);
    }

    public QueryFormByBizTypeResponseBody setResult(java.util.List result) {
        this.result = result;
        return this;
    }
    public java.util.List getResult() {
        return this.result;
    }

    public static class QueryFormByBizTypeResponseBodyResult extends TeaModel {
        // 表单类型,0为流程表单,1为数据表单
        @NameInMap("appType")
        public Integer appType;

        // 应用搭建id
        @NameInMap("appUuid")
        public String appUuid;

        // 业务标识
        @NameInMap("bizType")
        public String bizType;

        // 表单控件描述
        @NameInMap("content")
        public String content;

        // 创建时间
        @NameInMap("createTime")
        public Long createTime;

        // 创建人
        @NameInMap("creator")
        public String creator;

        // 模板code
        @NameInMap("formCode")
        public String formCode;

        // 表单uuid
        @NameInMap("formUuid")
        public String formUuid;

        // 模板描述
        @NameInMap("memo")
        public String memo;

        // 修改时间
        @NameInMap("modifedTime")
        public Long modifedTime;

        // 模板名称
        @NameInMap("name")
        public String name;

        // 数据归属id
        @NameInMap("ownerId")
        public String ownerId;

        // 模板状态
        @NameInMap("status")
        public String status;

        public static QueryFormByBizTypeResponseBodyResult build(java.util.Map map) throws Exception {
            QueryFormByBizTypeResponseBodyResult self = new QueryFormByBizTypeResponseBodyResult();
            return TeaModel.build(map, self);
        }

        public QueryFormByBizTypeResponseBodyResult setAppType(Integer appType) {
            this.appType = appType;
            return this;
        }
        public Integer getAppType() {
            return this.appType;
        }

        public QueryFormByBizTypeResponseBodyResult setAppUuid(String appUuid) {
            this.appUuid = appUuid;
            return this;
        }
        public String getAppUuid() {
            return this.appUuid;
        }

        public QueryFormByBizTypeResponseBodyResult setBizType(String bizType) {
            this.bizType = bizType;
            return this;
        }
        public String getBizType() {
            return this.bizType;
        }

        public QueryFormByBizTypeResponseBodyResult setContent(String content) {
            this.content = content;
            return this;
        }
        public String getContent() {
            return this.content;
        }

        public QueryFormByBizTypeResponseBodyResult setCreateTime(Long createTime) {
            this.createTime = createTime;
            return this;
        }
        public Long getCreateTime() {
            return this.createTime;
        }

        public QueryFormByBizTypeResponseBodyResult setCreator(String creator) {
            this.creator = creator;
            return this;
        }
        public String getCreator() {
            return this.creator;
        }

        public QueryFormByBizTypeResponseBodyResult setFormCode(String formCode) {
            this.formCode = formCode;
            return this;
        }
        public String getFormCode() {
            return this.formCode;
        }

        public QueryFormByBizTypeResponseBodyResult setFormUuid(String formUuid) {
            this.formUuid = formUuid;
            return this;
        }
        public String getFormUuid() {
            return this.formUuid;
        }

        public QueryFormByBizTypeResponseBodyResult setMemo(String memo) {
            this.memo = memo;
            return this;
        }
        public String getMemo() {
            return this.memo;
        }

        public QueryFormByBizTypeResponseBodyResult setModifedTime(Long modifedTime) {
            this.modifedTime = modifedTime;
            return this;
        }
        public Long getModifedTime() {
            return this.modifedTime;
        }

        public QueryFormByBizTypeResponseBodyResult setName(String name) {
            this.name = name;
            return this;
        }
        public String getName() {
            return this.name;
        }

        public QueryFormByBizTypeResponseBodyResult setOwnerId(String ownerId) {
            this.ownerId = ownerId;
            return this;
        }
        public String getOwnerId() {
            return this.ownerId;
        }

        public QueryFormByBizTypeResponseBodyResult setStatus(String status) {
            this.status = status;
            return this;
        }
        public String getStatus() {
            return this.status;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy