62 lines
1.1 KiB
Java
62 lines
1.1 KiB
Java
package com.tenwa.app.invoice.request;
|
|
|
|
|
|
import javax.xml.bind.annotation.*;
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlRootElement(name = "business")
|
|
public class InvoiceRequestBase {
|
|
|
|
@XmlAttribute
|
|
private String comment ;
|
|
@XmlAttribute
|
|
private String id ;
|
|
@XmlAttribute
|
|
private String version ;
|
|
|
|
@XmlElement
|
|
private InvoiceRequestHead head ;
|
|
@XmlElement
|
|
private InvoiceRequestBody body ;
|
|
|
|
public String getComment() {
|
|
return comment;
|
|
}
|
|
|
|
public void setComment(String comment) {
|
|
this.comment = comment;
|
|
}
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getVersion() {
|
|
return version;
|
|
}
|
|
|
|
public void setVersion(String version) {
|
|
this.version = version;
|
|
}
|
|
|
|
public InvoiceRequestHead getHead() {
|
|
return head;
|
|
}
|
|
|
|
public void setHead(InvoiceRequestHead head) {
|
|
this.head = head;
|
|
}
|
|
|
|
public InvoiceRequestBody getBody() {
|
|
return body;
|
|
}
|
|
|
|
public void setBody(InvoiceRequestBody body) {
|
|
this.body = body;
|
|
}
|
|
}
|