parent
b2dbfd87ba
commit
d9441949e2
@ -0,0 +1,32 @@ |
||||
package com.dxhy.order.invoice.module.invoice.model.po; |
||||
|
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* @Description: PO输出参数 |
||||
* @Author liufeilong |
||||
* @Date 2023-02-06 |
||||
**/ |
||||
@Data |
||||
public class EsOutput { |
||||
/** |
||||
* 外围系统数据唯一标识 |
||||
*/ |
||||
private String BSKEY; |
||||
/** |
||||
* SAP数据唯一标识 |
||||
*/ |
||||
private String SAPKEY; |
||||
/** |
||||
* 数据处理标识(S:成功,E:失败) |
||||
*/ |
||||
private String ZTYPE; |
||||
/** |
||||
* 数据处理描述 |
||||
*/ |
||||
private String ZMESSAGE; |
||||
/** |
||||
* 业务报文 |
||||
*/ |
||||
private String ZDATA; |
||||
} |
@ -0,0 +1,59 @@ |
||||
package com.dxhy.order.invoice.module.invoice.model.po; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* @Description: PO输入参数 |
||||
* @Author liufeilong |
||||
* @Date 2023-02-06 |
||||
**/ |
||||
@Data |
||||
public class IsInput implements Serializable { |
||||
/** |
||||
* 外围系统 |
||||
*/ |
||||
private String SYSID; |
||||
/** |
||||
* 接口业务ID |
||||
*/ |
||||
private String IFYWID; |
||||
/** |
||||
* 外围系统数据唯一标识 |
||||
*/ |
||||
private String BSKEY; |
||||
/** |
||||
* SAP数据唯一标识 |
||||
*/ |
||||
private String SAPKEY; |
||||
/** |
||||
* 组织机构代码 |
||||
*/ |
||||
private String ZORG; |
||||
/** |
||||
* SAP模块编码(OA用) |
||||
*/ |
||||
private String ZFILED1; |
||||
/** |
||||
* 预留字段 |
||||
*/ |
||||
private String ZFILED2; |
||||
/** |
||||
* 预留字段 |
||||
*/ |
||||
private String ZFILED3; |
||||
/** |
||||
* 预留字段 |
||||
*/ |
||||
private String ZFILED4; |
||||
/** |
||||
* SAP Client |
||||
*/ |
||||
private String ZFILED5; |
||||
/** |
||||
* 业务参数 |
||||
*/ |
||||
private String ZDATA; |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.dxhy.order.invoice.module.invoice.model.po; |
||||
|
||||
import com.alibaba.fastjson.annotation.JSONField; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* @Description: PO接口公共请求参数 |
||||
* @Author liufeilong |
||||
* @Date 2023-02-06 |
||||
**/ |
||||
@Data |
||||
public class PoCommonRequestParam implements Serializable { |
||||
/** |
||||
* IsInput |
||||
*/ |
||||
@JSONField(name = "IS_INPUT") |
||||
private IsInput IS_INPUT; |
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.dxhy.order.invoice.module.invoice.model.po; |
||||
|
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* @Description: PO接口公共响应参数 |
||||
* @Author liufeilong |
||||
* @Date 2023-02-06 |
||||
**/ |
||||
@Data |
||||
public class PoCommonResponseParam { |
||||
/** |
||||
* ES_OUTPUT |
||||
*/ |
||||
private EsOutput ES_OUTPUT; |
||||
} |
Loading…
Reference in new issue