53 lines
810 B
Java
53 lines
810 B
Java
package com.peanut.modules.common.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @author yl
|
|
* @email yl328572838@163.com
|
|
* @date 2022-10-17 14:54:08
|
|
*/
|
|
@Data
|
|
@TableName("book_buy_config")
|
|
public class BookBuyConfigEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@TableId
|
|
private Integer priceTypeId;
|
|
/**
|
|
* 类型
|
|
*/
|
|
private String type;
|
|
/**
|
|
* 渠道
|
|
*/
|
|
private String qudao;
|
|
/**
|
|
* 真实价格
|
|
*/
|
|
private String realMoney;
|
|
/**
|
|
* 金额
|
|
*/
|
|
private String money;
|
|
/**
|
|
* vip开通月份
|
|
*/
|
|
private String month;
|
|
/**
|
|
* 充值名称
|
|
*/
|
|
private String description;
|
|
|
|
}
|