|
|
|
@ -5,7 +5,7 @@ import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -46,10 +46,14 @@ public class SwebPOForPubListResultItemModel extends BaseBean {
|
|
|
|
|
@Column(name = "ITEM_STATUS")
|
|
|
|
|
private Integer itemStatus;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "订单类型", example = "1")
|
|
|
|
|
@ApiParam(value = "订单类型", example = "10")
|
|
|
|
|
@Column(name = "ORDER_TYPE")
|
|
|
|
|
public Integer orderType;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "时间数量列表", example = "1")
|
|
|
|
|
public List<Map<String,Double>> timeList;
|
|
|
|
|
public Map<String, Double> timeObject;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "是否可编辑(前端使用)")
|
|
|
|
|
public boolean isSet = false;
|
|
|
|
|
}
|
|
|
|
|