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

com.yunzhanghu.sdk.invoice.domain.GoodsServicesName Maven / Gradle / Ivy

Go to download

云账户综合服务平台官方 SDK for Java,支持 Java JDK 1.8 及以上版本 Copyright © 2013 - 2024 云账户技术(天津)有限公司 云账户开放平台:https://open.yunzhanghu.com

The newest version!
package com.yunzhanghu.sdk.invoice.domain;

import com.google.gson.annotations.SerializedName;

// 系统支持的货物或应税劳务、服务名称
public class GoodsServicesName {
    
    // 货物或应税劳务、服务名称
    private String item;
    
    // 是否为默认值
    @SerializedName("default")
    private boolean _default;

    public void setItem(String item) {
        this.item = item;
    }

    public String getItem() {
        return item;
    }

    public void setDefault(boolean _default) {
        this._default = _default;
    }

    public boolean getDefault() {
        return _default;
    }

    @Override
    public String toString() {
        return "GoodsServicesName{" +
                " item='" + item + '\'' + 
                ", _default='" + _default + '\'' + 
               "}";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy