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.
18 lines
464 B
Java
18 lines
464 B
Java
package com.glxp.api.upload;
|
|
|
|
import com.glxp.api.entity.inv.DeviceInspectTaskDetailEntity;
|
|
import com.glxp.api.entity.inv.DeviceInspectTaskEntity;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
//同步设备任务
|
|
@Data
|
|
public class SpsSyncDeviceTakeResponse {
|
|
|
|
private DeviceInspectTaskEntity deviceInspectTaskEntity;
|
|
private List<DeviceInspectTaskDetailEntity> deviceInspectTaskDetailEntityList;
|
|
private Integer type; //1 新增 2 编辑 3删除
|
|
|
|
}
|