|
@@ -1,11 +1,10 @@
|
|
|
package org.springblade.modules.finance.entity;
|
|
|
|
|
|
-import org.springblade.common.base.BaseEntity;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
-import io.swagger.annotations.ApiModel;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
+import org.springblade.common.base.BaseEntity;
|
|
|
|
|
|
/**
|
|
|
* 售后商品表实体类
|
|
@@ -19,11 +18,26 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
@ApiModel(value = "AfterSalesGoods对象", description = "售后商品表")
|
|
|
public class AfterSalesGoods extends BaseEntity {
|
|
|
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 售后id
|
|
|
+ */
|
|
|
+ private Long afterSalesId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 售后商品数量
|
|
|
+ */
|
|
|
+ private Integer goodsNum;
|
|
|
|
|
|
-private Long afterSalesId;
|
|
|
-private Integer goodsNum;
|
|
|
-private Long orderGrouponGoodsId;
|
|
|
+ /**
|
|
|
+ * 团购商品id
|
|
|
+ */
|
|
|
+ private Long orderGrouponGoodsId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 商品id
|
|
|
+ */
|
|
|
+ private Long orderGoodsId;
|
|
|
|
|
|
}
|