从MDM接口获取所属大区和业务区域
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.cool.store.response.mdm;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author Fun Li 2023/9/12 11:52
|
||||
* @version 1.0
|
||||
* mdm 所属大区 pojo
|
||||
* 对应
|
||||
* {
|
||||
* "id": "1642818197440036864",
|
||||
* "orgregionid": "Org001",
|
||||
* "orgregion": "东北战区"
|
||||
* },
|
||||
*/
|
||||
@Data
|
||||
public class BelongRegion {
|
||||
|
||||
private String id;
|
||||
|
||||
private String orgregionid;
|
||||
|
||||
private String orgregion;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
package com.cool.store.response.mdm;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author Fun Li 2023/9/12 11:29
|
||||
* @version 1.0
|
||||
* mdm 业务区域 pojo
|
||||
* 对应
|
||||
* {
|
||||
* "id": "1643101868734676992",
|
||||
* "buarea": "东北战区"
|
||||
* },
|
||||
*/
|
||||
@Data
|
||||
public class BusinessRegion {
|
||||
|
||||
private String id;
|
||||
|
||||
private String buarea;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user