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

com.aliyun.dingtalkindustry_1_0.models.IndustryMmanufactureMaterialCostGetResponseBody 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class IndustryMmanufactureMaterialCostGetResponseBody extends TeaModel {
    @NameInMap("hasMore")
    public Boolean hasMore;

    @NameInMap("list")
    public java.util.List list;

    @NameInMap("nextCursor")
    public Long nextCursor;

    @NameInMap("totalCount")
    public Long totalCount;

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

    public IndustryMmanufactureMaterialCostGetResponseBody setHasMore(Boolean hasMore) {
        this.hasMore = hasMore;
        return this;
    }
    public Boolean getHasMore() {
        return this.hasMore;
    }

    public IndustryMmanufactureMaterialCostGetResponseBody setList(java.util.List list) {
        this.list = list;
        return this;
    }
    public java.util.List getList() {
        return this.list;
    }

    public IndustryMmanufactureMaterialCostGetResponseBody setNextCursor(Long nextCursor) {
        this.nextCursor = nextCursor;
        return this;
    }
    public Long getNextCursor() {
        return this.nextCursor;
    }

    public IndustryMmanufactureMaterialCostGetResponseBody setTotalCount(Long totalCount) {
        this.totalCount = totalCount;
        return this;
    }
    public Long getTotalCount() {
        return this.totalCount;
    }

    public static class IndustryMmanufactureMaterialCostGetResponseBodyList extends TeaModel {
        @NameInMap("actPrice")
        public Float actPrice;

        @NameInMap("corpId")
        public String corpId;

        @NameInMap("count")
        public Float count;

        @NameInMap("ext")
        public String ext;

        @NameInMap("gmtCreate")
        public Long gmtCreate;

        @NameInMap("gmtModified")
        public Long gmtModified;

        @NameInMap("instanceId")
        public String instanceId;

        @NameInMap("materialCostNo")
        public String materialCostNo;

        @NameInMap("materialName")
        public String materialName;

        @NameInMap("materialNo")
        public String materialNo;

        @NameInMap("memo")
        public String memo;

        @NameInMap("price")
        public Float price;

        @NameInMap("processCode")
        public String processCode;

        @NameInMap("unit")
        public String unit;

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

        public IndustryMmanufactureMaterialCostGetResponseBodyList setActPrice(Float actPrice) {
            this.actPrice = actPrice;
            return this;
        }
        public Float getActPrice() {
            return this.actPrice;
        }

        public IndustryMmanufactureMaterialCostGetResponseBodyList setCorpId(String corpId) {
            this.corpId = corpId;
            return this;
        }
        public String getCorpId() {
            return this.corpId;
        }

        public IndustryMmanufactureMaterialCostGetResponseBodyList setCount(Float count) {
            this.count = count;
            return this;
        }
        public Float getCount() {
            return this.count;
        }

        public IndustryMmanufactureMaterialCostGetResponseBodyList setExt(String ext) {
            this.ext = ext;
            return this;
        }
        public String getExt() {
            return this.ext;
        }

        public IndustryMmanufactureMaterialCostGetResponseBodyList setGmtCreate(Long gmtCreate) {
            this.gmtCreate = gmtCreate;
            return this;
        }
        public Long getGmtCreate() {
            return this.gmtCreate;
        }

        public IndustryMmanufactureMaterialCostGetResponseBodyList setGmtModified(Long gmtModified) {
            this.gmtModified = gmtModified;
            return this;
        }
        public Long getGmtModified() {
            return this.gmtModified;
        }

        public IndustryMmanufactureMaterialCostGetResponseBodyList setInstanceId(String instanceId) {
            this.instanceId = instanceId;
            return this;
        }
        public String getInstanceId() {
            return this.instanceId;
        }

        public IndustryMmanufactureMaterialCostGetResponseBodyList setMaterialCostNo(String materialCostNo) {
            this.materialCostNo = materialCostNo;
            return this;
        }
        public String getMaterialCostNo() {
            return this.materialCostNo;
        }

        public IndustryMmanufactureMaterialCostGetResponseBodyList setMaterialName(String materialName) {
            this.materialName = materialName;
            return this;
        }
        public String getMaterialName() {
            return this.materialName;
        }

        public IndustryMmanufactureMaterialCostGetResponseBodyList setMaterialNo(String materialNo) {
            this.materialNo = materialNo;
            return this;
        }
        public String getMaterialNo() {
            return this.materialNo;
        }

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

        public IndustryMmanufactureMaterialCostGetResponseBodyList setPrice(Float price) {
            this.price = price;
            return this;
        }
        public Float getPrice() {
            return this.price;
        }

        public IndustryMmanufactureMaterialCostGetResponseBodyList setProcessCode(String processCode) {
            this.processCode = processCode;
            return this;
        }
        public String getProcessCode() {
            return this.processCode;
        }

        public IndustryMmanufactureMaterialCostGetResponseBodyList setUnit(String unit) {
            this.unit = unit;
            return this;
        }
        public String getUnit() {
            return this.unit;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy