| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @author WWW |
| | | * @date 2023-05-18 |
| | | * qxsh |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "Qxsh",description = "Qxsh") |
| | | public class Qxsh { |
| | |
| | | @ApiModelProperty(value = "时间") |
| | | private String time; |
| | | |
| | | @ApiModelProperty(value = "是否存在溯源") |
| | | private Integer isSuYuan; |
| | | |
| | | @ApiModelProperty(value = "是否存在快速溯源") |
| | | private Integer isFast; |
| | | |
| | | public Qxsh() { |
| | | this.isSuYuan = 0; |
| | | } |
| | | |
| | | public Integer getId() { |
| | |
| | | public void setTime(String time) { |
| | | this.time = time; |
| | | } |
| | | |
| | | public Integer getIsSuYuan() { |
| | | return isSuYuan; |
| | | } |
| | | |
| | | public void setIsSuYuan(Integer isSuYuan) { |
| | | this.isSuYuan = isSuYuan; |
| | | } |
| | | |
| | | public Integer getIsFast() { |
| | | return isFast; |
| | | } |
| | | |
| | | public void setIsFast(Integer isFast) { |
| | | this.isFast = isFast; |
| | | } |
| | | } |