分页

parent b70a4972
package com.aps.entity.Gantt;
import com.aps.entity.basic.ShiftVO;
import lombok.Data;
import lombok.experimental.Accessors;
@Data
@Accessors(chain = true)
public class ResourceSummaryVO {
private long id;
private String name;
private String type;
private Integer change;
private Integer split;
private long departmentId;
private String departmentName;
private String shopName;
private long shopId;
private String code;
private ShiftVO shift;
}
package com.aps.entity.Gantt;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.experimental.Accessors;
import java.time.LocalDateTime;
@Data
@Accessors(chain = true)
@Schema(name = "ScheduledOrderVO", description = "Scheduled order summary")
public class ScheduledOrderVO {
private String id;
private String productName;
private Integer productType;
private String productId;
private double quantity;
private String code;
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
private LocalDateTime startDate;
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
private LocalDateTime endDate;
private Long shopId;
private String shopName;
private String status;
private Integer headerId;
private String headerName;
private String orderCode;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment