bug
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package com.peanut.modules.common.dao;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseMapper;
|
||||
import com.peanut.modules.common.entity.VipBuyConfigEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface VipBuyConfigDao extends MPJBaseMapper<VipBuyConfigEntity> {
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
package com.peanut.modules.common.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("vip_buy_config")
|
||||
public class VipBuyConfigEntity {
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 1超级vip2医学vip3国学vip
|
||||
*/
|
||||
private Integer type;
|
||||
|
||||
private String title;
|
||||
|
||||
private Integer year;
|
||||
|
||||
private BigDecimal fee;
|
||||
|
||||
private Integer dateType;
|
||||
|
||||
private Date startTime;
|
||||
|
||||
private Date endTime;
|
||||
|
||||
@TableLogic
|
||||
private Integer del_flag;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user