33 lines
683 B
Java
33 lines
683 B
Java
package com.tenwa.app.invoice.request;
|
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlRootElement(name = "head")
|
|
public class InvoiceRequestHead {
|
|
@XmlElement
|
|
private String appid ;
|
|
@XmlElement
|
|
private String sid ;
|
|
|
|
public String getAppid() {
|
|
return appid;
|
|
}
|
|
|
|
public void setAppid(String appid) {
|
|
this.appid = appid;
|
|
}
|
|
|
|
public String getSid() {
|
|
return sid;
|
|
}
|
|
|
|
public void setSid(String sid) {
|
|
this.sid = sid;
|
|
}
|
|
}
|