parent
d42467968a
commit
57979598b6
|
@ -46,10 +46,11 @@ public interface DeviceTaskManager {
|
||||||
boolean changeDisposeDeviceTaskInfoStatus(Long id, DisposeTaskStatus status);
|
boolean changeDisposeDeviceTaskInfoStatus(Long id, DisposeTaskStatus status);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets dispose device task status.
|
* Change dispose device task info dev status int.
|
||||||
*
|
*
|
||||||
* @param id the id
|
* @param id the id
|
||||||
* @return the dispose device task status
|
* @param devStatus the dev status
|
||||||
|
* @return the int
|
||||||
*/
|
*/
|
||||||
int changeDisposeDeviceTaskInfoDevStatus(Long id, Long devStatus);
|
int changeDisposeDeviceTaskInfoDevStatus(Long id, Long devStatus);
|
||||||
|
|
||||||
|
@ -136,9 +137,10 @@ public interface DeviceTaskManager {
|
||||||
DeviceTask getTaskById(Long id);
|
DeviceTask getTaskById(Long id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets PengXin device task info by startId.
|
* Gets peng xin task by id.
|
||||||
*
|
*
|
||||||
* @return the minId task info.
|
* @param startId the start id
|
||||||
|
* @return the peng xin task by id
|
||||||
*/
|
*/
|
||||||
List<DeviceTask> getPengXinTaskById(Long startId);
|
List<DeviceTask> getPengXinTaskById(Long startId);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package com.huawei.dispose.common;
|
package com.huawei.dispose.common;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.Builder;
|
import lombok.Builder;
|
||||||
|
@ -22,5 +23,6 @@ public class HuaWeiCreatDivertReq {
|
||||||
/**
|
/**
|
||||||
* The array zone ip.
|
* The array zone ip.
|
||||||
*/
|
*/
|
||||||
private String[] zone_ip;
|
@JsonProperty("zone_ip")
|
||||||
|
private String[] zoneIp;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ import lombok.EqualsAndHashCode;
|
||||||
import lombok.NoArgsConstructor;
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The type Peng xin tast status item.
|
* The type Peng xin task status item.
|
||||||
*
|
*
|
||||||
* @author <huangxin@cmhi.chinamoblie.com>
|
* @author <huangxin@cmhi.chinamoblie.com>
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue