package com.xcong.excoin.modules.datamove.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @author wzy
|
* @date 2021-06-21
|
**/
|
@Data
|
@TableName("xzx_score_order_details")
|
public class ScoreOrderDetails extends BaseEntity {
|
|
private String goodsName;
|
|
private BigDecimal unitPrice;
|
|
private Integer cnt;
|
|
private BigDecimal totalPrice;
|
|
private String sku;
|
|
private String style;
|
|
private String thumb;
|
|
private Long goodsId;
|
|
private Long skuId;
|
|
private Long orderId;
|
}
|