package com.panzhihua.service_community.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 社会组织孵化申请表(ComActSocialOrgHatchAudit)表实体类
|
*
|
* @author makejava
|
* @since 2022-04-18 15:10:10
|
*/
|
@Data
|
@TableName(value = "com_act_social_org_hatch_audit")
|
@SuppressWarnings("serial")
|
public class ComActSocialOrgHatchAudit implements Serializable {
|
private static final long serialVersionUID = -12554435202494916L;
|
/**
|
* 主键
|
*/
|
private Long id;
|
/**
|
* 准社会组织名称
|
*/
|
private String name;
|
/**
|
* 负责人
|
*/
|
private String responsibility;
|
/**
|
* 联系电话
|
*/
|
private String phone;
|
/**
|
* 孵化单位
|
*/
|
private Long hatchUnit;
|
/**
|
* 孵化单位类型(1.街道 2.社区)
|
*/
|
private Integer hatchUnitType;
|
/**
|
* 孵化单位名称
|
*/
|
private String hatchUnitName;
|
/**
|
* 申请用户
|
*/
|
private Long userId;
|
/**
|
* 申请状态(1.待审核 2.审核通过 3.已驳回)
|
*/
|
private Integer status;
|
/**
|
* 申请时间
|
*/
|
private Date createdAt;
|
/**
|
* 更新时间
|
*/
|
private Date updatedAt;
|
/**
|
* 组织介绍
|
*/
|
private String introduction;
|
/**
|
* 组织标识
|
*/
|
private String logo;
|
/**
|
* 申请原因
|
*/
|
private String applyReason;
|
/**
|
* 服务范围
|
*/
|
private String serviceScope;
|
|
}
|