REM:
1. 修改部分CheckStyle问题
This commit is contained in:
HuangXin 2020-11-25 14:35:36 +08:00
parent d42467968a
commit 57979598b6
3 changed files with 11 additions and 7 deletions

View File

@ -46,10 +46,11 @@ public interface DeviceTaskManager {
boolean changeDisposeDeviceTaskInfoStatus(Long id, DisposeTaskStatus status);
/**
* Gets dispose device task status.
* Change dispose device task info dev status int.
*
* @param id the id
* @return the dispose device task status
* @param id the id
* @param devStatus the dev status
* @return the int
*/
int changeDisposeDeviceTaskInfoDevStatus(Long id, Long devStatus);
@ -136,9 +137,10 @@ public interface DeviceTaskManager {
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);
}

View File

@ -1,6 +1,7 @@
package com.huawei.dispose.common;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.AllArgsConstructor;
import lombok.Builder;
@ -22,5 +23,6 @@ public class HuaWeiCreatDivertReq {
/**
* The array zone ip.
*/
private String[] zone_ip;
@JsonProperty("zone_ip")
private String[] zoneIp;
}

View File

@ -7,7 +7,7 @@ import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
/**
* The type Peng xin tast status item.
* The type Peng xin task status item.
*
* @author <huangxin@cmhi.chinamoblie.com>
*/