Commit 9a395497 by huangjinxin

feat:分单返回类添加

1 parent 39a95b6c
package com.dituhui.pea.order.dto.param;
import com.dituhui.pea.order.entity.EngineerInfoEntity;
import lombok.Data;
import lombok.experimental.Accessors;
import java.time.LocalDateTime;
import java.util.List;
@Data
@Accessors(chain = true)
public class OrgTeamInfo {
private Integer id;
private String teamId;
private String teamName;
private Integer teamType;
private String clusterId;
private String branchId;
private String groupId;
private String warehouseId;
private String workdays;
private String memo;
private LocalDateTime createTime;
private LocalDateTime updateTime;
private String workOn;
private String workOff;
private Integer workDuration;
private String transportMod;
private String strategySchedule;
private String strategyAppointment;
private Integer intervalSchedule;
private Integer intervalScheduleNext;
private String cuteOff;
private Integer status;
List<EngineerInfoEntity> engineerInfoList;
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!