|
@@ -2,13 +2,17 @@ package com.fs.store.domain;
|
|
|
|
|
|
import com.fs.common.annotation.Excel;
|
|
|
import com.fs.common.core.domain.BaseEntity;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
|
|
|
/**
|
|
|
* 订单详情对象 fs_store_order_item
|
|
|
- *
|
|
|
+ *
|
|
|
* @author fs
|
|
|
* @date 2022-03-21
|
|
|
*/
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Data
|
|
|
public class FsStoreOrderItem extends BaseEntity
|
|
|
{
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -41,89 +45,12 @@ public class FsStoreOrderItem extends BaseEntity
|
|
|
@Excel(name = "是否能售后0不能1能")
|
|
|
private Integer isAfterSales;
|
|
|
|
|
|
- private Integer isPrescribe;
|
|
|
-
|
|
|
- public Integer getIsPrescribe() {
|
|
|
- return isPrescribe;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsPrescribe(Integer isPrescribe) {
|
|
|
- this.isPrescribe = isPrescribe;
|
|
|
- }
|
|
|
-
|
|
|
- public void setItemId(Long itemId)
|
|
|
- {
|
|
|
- this.itemId = itemId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getItemId()
|
|
|
- {
|
|
|
- return itemId;
|
|
|
- }
|
|
|
- public void setOrderId(Long orderId)
|
|
|
- {
|
|
|
- this.orderId = orderId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getOrderId()
|
|
|
- {
|
|
|
- return orderId;
|
|
|
- }
|
|
|
- public void setOrderCode(String orderCode)
|
|
|
- {
|
|
|
- this.orderCode = orderCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getOrderCode()
|
|
|
- {
|
|
|
- return orderCode;
|
|
|
- }
|
|
|
- public void setCartId(Long cartId)
|
|
|
- {
|
|
|
- this.cartId = cartId;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 仓库代码
|
|
|
+ */
|
|
|
+ private String warehouseCode;
|
|
|
|
|
|
- public Long getCartId()
|
|
|
- {
|
|
|
- return cartId;
|
|
|
- }
|
|
|
- public void setProductId(Long productId)
|
|
|
- {
|
|
|
- this.productId = productId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getProductId()
|
|
|
- {
|
|
|
- return productId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setJsonInfo(String jsonInfo)
|
|
|
- {
|
|
|
- this.jsonInfo = jsonInfo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getJsonInfo()
|
|
|
- {
|
|
|
- return jsonInfo;
|
|
|
- }
|
|
|
- public void setNum(Integer num)
|
|
|
- {
|
|
|
- this.num = num;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getNum()
|
|
|
- {
|
|
|
- return num;
|
|
|
- }
|
|
|
- public void setIsAfterSales(Integer isAfterSales)
|
|
|
- {
|
|
|
- this.isAfterSales = isAfterSales;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsAfterSales()
|
|
|
- {
|
|
|
- return isAfterSales;
|
|
|
- }
|
|
|
+ private Integer isPrescribe;
|
|
|
|
|
|
|
|
|
}
|