| package com.vincent.rsf.server.manager.controller.params; | 
|   | 
| import com.vincent.rsf.server.manager.entity.WaitPakin; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import lombok.experimental.Accessors; | 
|   | 
| import java.io.Serializable; | 
| import java.util.List; | 
|   | 
| /** | 
|  * @author Ryan | 
|  * @version 1.0 | 
|  * @title GenerateTaskParams | 
|  * @description | 
|  * @create 2025/4/15 09:54 | 
|  */ | 
| @Data | 
| @Accessors(chain = true) | 
| @ApiModel(value = "GenerateTaskParams", description = "生成任务参数") | 
| public class GenerateTaskParams implements Serializable { | 
|   | 
|     @ApiModelProperty("组拖档") | 
|     public List<WaitPakin> waitPakins; | 
|   | 
|     @ApiModelProperty("站点ID") | 
|     public Long siteId; | 
|   | 
|     @ApiModelProperty("库位编码") | 
|     public String locCode; | 
| } |