93 lines
1.9 KiB
Java
93 lines
1.9 KiB
Java
|
|
||
|
package com.api.aiyh_kafang.entity;
|
||
|
|
||
|
|
||
|
public class UfInvoiceConfigDTO {
|
||
|
|
||
|
private int id;
|
||
|
private int requestId;
|
||
|
private String workflowType;
|
||
|
private String workflowNodes;
|
||
|
private String invoiceField;
|
||
|
private String invoicePrice;
|
||
|
private int invoiceBrowse;
|
||
|
private String invoiceDetailTable;
|
||
|
|
||
|
public void setId(int id) {
|
||
|
this.id = id;
|
||
|
}
|
||
|
|
||
|
public void setRequestId(int requestId) {
|
||
|
this.requestId = requestId;
|
||
|
}
|
||
|
|
||
|
public void setWorkflowType(String workflowType) {
|
||
|
this.workflowType = workflowType;
|
||
|
}
|
||
|
|
||
|
public void setWorkflowNodes(String workflowNodes) {
|
||
|
this.workflowNodes = workflowNodes;
|
||
|
}
|
||
|
|
||
|
public void setInvoiceField(String invoiceField) {
|
||
|
this.invoiceField = invoiceField;
|
||
|
}
|
||
|
|
||
|
public void setInvoicePrice(String invoicePrice) {
|
||
|
this.invoicePrice = invoicePrice;
|
||
|
}
|
||
|
|
||
|
public void setInvoiceBrowse(int invoiceBrowse) {
|
||
|
this.invoiceBrowse = invoiceBrowse;
|
||
|
}
|
||
|
|
||
|
public void setInvoiceDetailTable(String invoiceDetailTable) {
|
||
|
this.invoiceDetailTable = invoiceDetailTable;
|
||
|
}
|
||
|
|
||
|
public int getId() {
|
||
|
return this.id;
|
||
|
}
|
||
|
|
||
|
public int getRequestId() {
|
||
|
return this.requestId;
|
||
|
}
|
||
|
|
||
|
public String getWorkflowType() {
|
||
|
return this.workflowType;
|
||
|
}
|
||
|
|
||
|
public String getWorkflowNodes() {
|
||
|
return this.workflowNodes;
|
||
|
}
|
||
|
|
||
|
public String getInvoiceField() {
|
||
|
return this.invoiceField;
|
||
|
}
|
||
|
|
||
|
public String getInvoicePrice() {
|
||
|
return this.invoicePrice;
|
||
|
}
|
||
|
|
||
|
public int getInvoiceBrowse() {
|
||
|
return this.invoiceBrowse;
|
||
|
}
|
||
|
|
||
|
public String getInvoiceDetailTable() {
|
||
|
return this.invoiceDetailTable;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return "UfInvoiceConfigDTO{" +
|
||
|
"id='" + id + '\'' +
|
||
|
", requestId='" + requestId + '\'' +
|
||
|
", workflowType='" + workflowType + '\'' +
|
||
|
", workflowNodes='" + workflowNodes + '\'' +
|
||
|
", invoiceField='" + invoiceField + '\'' +
|
||
|
", invoicePrice='" + invoicePrice + '\'' +
|
||
|
", invoiceBrowse='" + invoiceBrowse + '\'' +
|
||
|
", invoiceDetailTable='" + invoiceDetailTable + '\'' +
|
||
|
'}';
|
||
|
}
|
||
|
}
|