|  |  |  | 
|---|
|  |  |  | package com.doumee.dao.business.vo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.doumee.core.annotation.excel.ExcelColumn; | 
|---|
|  |  |  | import com.doumee.dao.business.model.Approve; | 
|---|
|  |  |  | import com.doumee.dao.business.model.Platform; | 
|---|
|  |  |  | import com.doumee.dao.business.model.PlatformWmsDetail; | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "收货地") | 
|---|
|  |  |  | private String address; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "0未完成 1已完成 2已取消", example = "1") | 
|---|
|  |  |  | private Integer status; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "上锁状态:0=未上锁;1=已上锁;") | 
|---|
|  |  |  | private Integer lockStatus; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "明细信息") | 
|---|
|  |  |  | private List<PlatformWmsDetail> platformWmsDetailList; | 
|---|
|  |  |  |  | 
|---|