| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | |
| | | public class OrderSaleGeneratorDTO implements Serializable { |
| | | |
| | | @ApiModelProperty(value = "店铺id") |
| | | @NotNull(message = "店铺id不能为空") |
| | | private Long shopId; |
| | | |
| | | @ApiModelProperty(value = "开始时间") |
| | |
| | | @ApiModelProperty(value = "进货数据设置") |
| | | private List<TStockDataSet> stockDataSets; |
| | | |
| | | @ApiModelProperty(value = "前端忽略") |
| | | private Long userId; |
| | | |
| | | @ApiModelProperty(value = "前端忽略") |
| | | private String nickName; |
| | | |
| | | } |