You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-spms-java/src/main/java/com/glxp/api/res/sync/SpsSyncThrDataResponse.java

32 lines
614 B
Java

package com.glxp.api.res.sync;
import com.glxp.api.entity.thrsys.ThrCorpEntity;
import com.glxp.api.entity.thrsys.ThrDeptEntity;
import com.glxp.api.entity.thrsys.ThrInvWarehouseEntity;
import lombok.Data;
import java.util.List;
/**
* 同步第三方基础数据
*/
@Data
public class SpsSyncThrDataResponse extends BaseSyncResponse {
/**
* 部门信息
*/
private List<ThrDeptEntity> deptEntities;
/**
* 仓库信息
*/
private List<ThrInvWarehouseEntity> invWarehouseEntities;
/**
* 往来单位信息
*/
private List<ThrCorpEntity> corpEntities;
}