You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
2.2 KiB
96 lines
2.2 KiB
3 years ago
|
/*
|
||
|
* Copyright (C), 2018-2021
|
||
|
* Project: starter
|
||
|
* FileName: request
|
||
|
* Author: Louis
|
||
|
* Date: 2021/7/14 15:31
|
||
|
*/
|
||
|
package com.fr.plugin.tabledataservice.bean;
|
||
|
|
||
|
import javax.xml.bind.annotation.*;
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <request>
|
||
|
*
|
||
|
* @author fr.open
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||
|
@XmlType(name = "BizOperation_Req", propOrder = {"fromUnit", "toUnit", "fromSys", "toSys", "bizOperation", "key", "bizData"})
|
||
|
@XmlRootElement(name = "BizOperation_Req")
|
||
|
public abstract class Request {
|
||
|
@XmlElement(name = "fromUnit", required = true)
|
||
|
private String fromUnit;
|
||
|
@XmlElement(name = "toUnit", required = true)
|
||
|
private String toUnit;
|
||
|
@XmlElement(name = "fromSys", required = true)
|
||
|
private String fromSys;
|
||
|
@XmlElement(name = "toSys", required = true)
|
||
|
private String toSys;
|
||
|
@XmlElement(name = "bizOperation", required = true)
|
||
|
private String bizOperation;
|
||
|
@XmlElement(name = "key", required = false)
|
||
|
private String key;
|
||
|
@XmlElement(name = "bizData", required = false)
|
||
|
private String bizData;
|
||
|
|
||
|
public Request() {
|
||
|
}
|
||
|
|
||
|
public String getFromUnit() {
|
||
|
return fromUnit;
|
||
|
}
|
||
|
|
||
|
public void setFromUnit(String fromUnit) {
|
||
|
this.fromUnit = fromUnit;
|
||
|
}
|
||
|
|
||
|
public String getToUnit() {
|
||
|
return toUnit;
|
||
|
}
|
||
|
|
||
|
public void setToUnit(String toUnit) {
|
||
|
this.toUnit = toUnit;
|
||
|
}
|
||
|
|
||
|
public String getFromSys() {
|
||
|
return fromSys;
|
||
|
}
|
||
|
|
||
|
public void setFromSys(String fromSys) {
|
||
|
this.fromSys = fromSys;
|
||
|
}
|
||
|
|
||
|
public String getToSys() {
|
||
|
return toSys;
|
||
|
}
|
||
|
|
||
|
public void setToSys(String toSys) {
|
||
|
this.toSys = toSys;
|
||
|
}
|
||
|
|
||
|
public String getBizOperation() {
|
||
|
return bizOperation;
|
||
|
}
|
||
|
|
||
|
public void setBizOperation(String bizOperation) {
|
||
|
this.bizOperation = bizOperation;
|
||
|
}
|
||
|
|
||
|
public String getKey() {
|
||
|
return key;
|
||
|
}
|
||
|
|
||
|
public void setKey(String key) {
|
||
|
this.key = key;
|
||
|
}
|
||
|
|
||
|
public String getBizData() {
|
||
|
return bizData;
|
||
|
}
|
||
|
|
||
|
public void setBizData(String bizData) {
|
||
|
this.bizData = bizData;
|
||
|
}
|
||
|
}
|