| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.doumee.dao.dto; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * é¢è®¡æ¶æé
ç½®ä¿åè¯·æ± |
| | | * @author rk |
| | | * @date 2026/04/08 |
| | | */ |
| | | @Data |
| | | @ApiModel("é¢è®¡æ¶æé
ç½®ä¿å请æ±") |
| | | public class EstimatedDeliverySaveDTO implements Serializable { |
| | | |
| | | @ApiModelProperty(value = "åå¸ä¸»é®", required = true, example = "1") |
| | | @NotNull(message = "åå¸ä¸»é®ä¸è½ä¸ºç©º") |
| | | private Integer cityId; |
| | | |
| | | @ApiModelProperty(value = "èµ·ééç¨(å
Ž)", required = true, example = "10") |
| | | @NotNull(message = "èµ·ééç¨ä¸è½ä¸ºç©º") |
| | | private String startDistance; |
| | | |
| | | @ApiModelProperty(value = "èµ·éæ¶é¿", required = true, example = "2") |
| | | @NotNull(message = "èµ·éæ¶é¿ä¸è½ä¸ºç©º") |
| | | private String startTime; |
| | | |
| | | @ApiModelProperty(value = "ç»ééç¨(å
Ž)", required = true, example = "5") |
| | | @NotNull(message = "ç»ééç¨ä¸è½ä¸ºç©º") |
| | | private String continueDistance; |
| | | |
| | | @ApiModelProperty(value = "ç»éæ¶é¿", required = true, example = "1") |
| | | @NotNull(message = "ç»éæ¶é¿ä¸è½ä¸ºç©º") |
| | | private String continueTime; |
| | | } |