package com.mzl.flower.dto.response.payment; 
 | 
  
 | 
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; 
 | 
import java.util.List; 
 | 
  
 | 
@Data 
 | 
public class DeliveryOrderItemCheckDTO extends AbstractTransDTO { 
 | 
    private String id; 
 | 
  
 | 
    @ApiModelProperty(value = "商品名称") 
 | 
    private String flowerName; 
 | 
  
 | 
    @ApiModelProperty(value = "商品单位") 
 | 
    private String flowerUnit; 
 | 
  
 | 
    @ApiModelProperty(value = "商品颜色") 
 | 
    private String flowerColor; 
 | 
  
 | 
    @ApiModelProperty(value = "商品封面") 
 | 
    private String flowerCover; 
 | 
  
 | 
    @ApiModelProperty(value = "数量") 
 | 
    private Integer num; 
 | 
  
 | 
    @ApiModelProperty(value = "价格") 
 | 
    private BigDecimal price; 
 | 
  
 | 
    @ApiModelProperty(value = "级别; FLOWER_LEVEL") 
 | 
    @DictTrans(target = "flowerLevelStr", codeType = "FLOWER_LEVEL") 
 | 
    private String flowerLevel; 
 | 
    private String flowerLevelStr; 
 | 
  
 | 
    @ApiModelProperty(value = "集货状态") 
 | 
    private String status; 
 | 
  
 | 
    @ApiModelProperty(value = "补货数量") 
 | 
    private Integer replaceNum; 
 | 
  
 | 
    @ApiModelProperty(value = "降级数量") 
 | 
    private Integer reduceNum; 
 | 
  
 | 
    @ApiModelProperty(value = "缺货数量") 
 | 
    private Integer lackNum; 
 | 
  
 | 
    /*private String checkImages; 
 | 
  
 | 
    @ApiModelProperty(value = "质检图片") 
 | 
    private List<String> checkImageList; 
 | 
  
 | 
    @ApiModelProperty(value = "质检时间") 
 | 
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss" ,timezone="GMT+8") 
 | 
    @DateTimeFormat 
 | 
    private LocalDateTime checkTime; 
 | 
  
 | 
    @ApiModelProperty(value = "质检备注") 
 | 
    private String checkRemarks;*/ 
 | 
} 
 |