|  |  |  | 
|---|
|  |  |  | package com.mzl.flower.dto.response.flower; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|---|
|  |  |  | import com.mzl.flower.base.AbstractTransDTO; | 
|---|
|  |  |  | import com.mzl.flower.base.annotation.DictTrans; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  | import org.springframework.format.annotation.DateTimeFormat; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.math.BigDecimal; | 
|---|
|  |  |  | import java.time.LocalDateTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | 
|---|
|  |  |  | private Boolean shown;//是否显示 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Integer zoneRank;//专区排序 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty("限购数量") | 
|---|
|  |  |  | private Integer limited;//限购 | 
|---|
|  |  |  | } | 
|---|