|
|
@ -4,8 +4,6 @@ import com.yxt.common.core.dto.Dto; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import javax.validation.constraints.NotBlank; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Author dimengzhe |
|
|
|
* @Date 2022/6/6 11:55 |
|
|
@ -16,10 +14,10 @@ public class AppBusSalesOrderPriceDto implements Dto { |
|
|
|
private static final long serialVersionUID = 401229647162329928L; |
|
|
|
|
|
|
|
@ApiModelProperty(value = "预计提车地点") |
|
|
|
@NotBlank(message = "预计提车地点不能为空") |
|
|
|
// @NotBlank(message = "预计提车地点不能为空")
|
|
|
|
private String plannedPickUpLocation; |
|
|
|
@ApiModelProperty(value = "预计提车地点key") |
|
|
|
@NotBlank(message = "预计提车地点不能为空") |
|
|
|
// @NotBlank(message = "预计提车地点不能为空")
|
|
|
|
private String plannedPickUpLocationKey; |
|
|
|
@ApiModelProperty(value = "主车单台成交价格") |
|
|
|
private String transactionPrice; |
|
|
|