75 lines
1.2 KiB
Java
75 lines
1.2 KiB
Java
package com.zmzm.finance.common.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* <p>
|
|
*
|
|
* </p>
|
|
*
|
|
* @author baomidou
|
|
* @since 2026-01-06
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
@ToString
|
|
@TableName("t_meetingclass_register")
|
|
public class TMeetingclassRegister implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId("oid")
|
|
private String oid;
|
|
|
|
private String description;
|
|
|
|
private Date invaliddate;
|
|
|
|
private Boolean valid;
|
|
|
|
private Integer version;
|
|
|
|
private Date createdate;
|
|
|
|
private String title;
|
|
|
|
private String content;
|
|
|
|
private String images;
|
|
|
|
private Integer payamount;
|
|
|
|
private String status;
|
|
|
|
private String type;
|
|
|
|
private Integer orderno;
|
|
|
|
private Integer gainpoint;
|
|
|
|
private String years;
|
|
|
|
/**
|
|
* 超V与在校大学生价格
|
|
*/
|
|
private Integer studentorvipamount;
|
|
|
|
/**
|
|
* 五星湖粉价格
|
|
*/
|
|
private Integer fivestarsamount;
|
|
|
|
/**
|
|
* 一星湖粉价格
|
|
*/
|
|
private Integer onestarsamount;
|
|
}
|