Commit 91c06d2d by wangli

派单台工单列表接口实现

1 parent 81c429ab
package com.alibaba.cloud.integration.order.dto;
import lombok.Data;
import java.util.List;
@Data
public class DispatchOrderListResp {
private List<Order> orders;
@Data
public static class Order{
private boolean weight;
private String description;
private String intentionTime;
private Integer duration;
private String skill;
private String category;
private String orderId;
private String customerName;
private String remark;
private String groupTag;
private String groupWeight;
}
}
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!