| package com.vincent.rsf.server.api.controller.erp.params; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import io.swagger.annotations.ApiOperation; | 
| import lombok.Data; | 
| import lombok.experimental.Accessors; | 
|   | 
| import java.io.Serializable; | 
| import java.util.List; | 
|   | 
| @Data | 
| @Accessors(chain = true) | 
| @ApiModel(value = "ReportParams", description = "希日ERP上报参数") | 
| public class ReportParams implements Serializable { | 
|   | 
|     @ApiModelProperty("订单类型") | 
|     private String OrderType; | 
|   | 
|     @ApiModelProperty("动作类型") | 
|     private String Action = "Update"; | 
|   | 
|     @ApiModelProperty("数据") | 
|     private List<ReportDataParam> Data; | 
|   | 
| } |