65 lines
1.1 KiB
Java
65 lines
1.1 KiB
Java
package com.ruoyi.xq.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* 相亲群对象 xq_group
|
|
*
|
|
* @author 77
|
|
* @date 2024-05-15
|
|
*/
|
|
@Data
|
|
@TableName("xq_group")
|
|
public class Group implements Serializable {
|
|
|
|
private static final long serialVersionUID=1L;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@TableId(value = "id")
|
|
private Long id;
|
|
/**
|
|
* 群头像
|
|
*/
|
|
private String groupImage;
|
|
/**
|
|
* 群名称
|
|
*/
|
|
private String groupName;
|
|
/**
|
|
* 群内女性比例
|
|
*/
|
|
private Integer groupWomanRate;
|
|
/**
|
|
* 群内男性比例
|
|
*/
|
|
private Integer groupManRate;
|
|
/**
|
|
* 城市名称
|
|
*/
|
|
private String cityName;
|
|
/**
|
|
* 城市编码
|
|
*/
|
|
private String cityCode;
|
|
/**
|
|
* 入群价格
|
|
*/
|
|
private BigDecimal joinPrice;
|
|
|
|
private String groupRemark;
|
|
|
|
private Integer deleteFlag;
|
|
|
|
private LocalDateTime createTime;
|
|
private LocalDateTime updateTime;
|
|
|
|
}
|