Commit 1b7a4597 by 丁伟峰

改成List<?>

1 parent 34297fe1
package com.alibaba.cloud.integration.order.dto; package com.alibaba.cloud.integration.order.dto;
import java.util.List;
@lombok.Data @lombok.Data
public class WorkbenchEngineersGanttReqDTO { public class WorkbenchEngineersGanttReqDTO {
...@@ -12,5 +14,5 @@ public class WorkbenchEngineersGanttReqDTO { ...@@ -12,5 +14,5 @@ public class WorkbenchEngineersGanttReqDTO {
/** /**
* 技术员ID列表,即使只有一个,也必须["en001"]这样的格式 * 技术员ID列表,即使只有一个,也必须["en001"]这样的格式
*/ */
private String[] engineerCodes; private List<String> engineerCodes;
} }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!