package com.dsh.course.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; /** * @author zhibing.pu * @date 2023/6/29 10:42 */ @Data @TableName("t_course_package_payment_config") public class CoursePackagePaymentConfig { /** * 主键 */ @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 课包id */ @TableField("coursePackageId") private Integer coursePackageId; /** * 课时数 */ @TableField("classHours") private Integer classHours; /** * 现金支付价格 */ @TableField("cashPayment") private Double cashPayment; /** * 玩湃币价格 */ @TableField("playPaiCoin") private Integer playPaiCoin; @TableField("couponIds") private String couponIds; }