|
|
@@ -5,6 +5,8 @@ import java.util.Date;
|
|
|
|
|
|
import org.apache.commons.lang3.time.DateFormatUtils;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat.Shape;
|
|
|
import com.goafanti.common.constant.AFTConstants;
|
|
|
|
|
|
public class DemandSearchDetailBo extends DemandSearchListBo{
|
|
|
@@ -63,6 +65,21 @@ public class DemandSearchDetailBo extends DemandSearchListBo{
|
|
|
*/
|
|
|
private String demandOrderId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 订单状态
|
|
|
+ */
|
|
|
+ private Integer orderStatus;
|
|
|
+
|
|
|
+
|
|
|
+ @JsonFormat(shape = Shape.STRING)
|
|
|
+ public Integer getOrderStatus() {
|
|
|
+ return orderStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrderStatus(Integer orderStatus) {
|
|
|
+ this.orderStatus = orderStatus;
|
|
|
+ }
|
|
|
+
|
|
|
public String getDemandOrderId() {
|
|
|
return demandOrderId;
|
|
|
}
|