package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.entity.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
@TableName("mall_score_voucher")
|
public class MallScoreVoucher extends BaseEntity {
|
|
private String voucherNo;
|
|
private Long memberId;
|
|
/**
|
* B:买入S:卖出
|
*/
|
private String type;
|
/**
|
* 数量
|
*/
|
private BigDecimal voucherCnt;
|
/**
|
* 单价
|
*/
|
private BigDecimal price;
|
/**
|
* 总价
|
*/
|
private BigDecimal voucherAmount;
|
|
}
|