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.
34 lines
655 B
Java
34 lines
655 B
Java
package com.glxp.api.res.sync;
|
|
|
|
import com.glxp.api.entity.auth.*;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class SpsSyncDataResponse {
|
|
|
|
//同步任务ID
|
|
private String taskId;
|
|
|
|
//用户信息
|
|
List<AuthAdmin> authAdminList;
|
|
List<InvBusUserEntity> invBusUserEntities;
|
|
|
|
//部门信息
|
|
List<DeptEntity> deptEntityList;
|
|
List<DeptUserEntity> deptUserEntities;
|
|
|
|
|
|
//仓库相关
|
|
List<InvWarehouseEntity> invWarehouseEntities;
|
|
List<WarehouseBussinessTypeEntity> warehouseBussinessTypeEntities;
|
|
List<WarehouseUserEntity> warehouseUserEntities;
|
|
|
|
|
|
//货位信息
|
|
List<InvSpace> invSpaces;
|
|
|
|
|
|
}
|