package com.panzhihua.service_community.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 社会组织孵化申请进度表(ComActSocialOrgHatchAuditSchedule)表实体类
|
*
|
* @author makejava
|
* @since 2022-04-18 15:10:47
|
*/
|
@Data
|
@TableName(value = "com_act_social_org_hatch_audit_schedule")
|
@SuppressWarnings("serial")
|
public class ComActSocialOrgHatchAuditSchedule implements Serializable {
|
private static final long serialVersionUID = 779830361079215649L;
|
/**
|
* 主键
|
*/
|
private Long id;
|
/**
|
* 社会组织孵化申请关联id
|
*/
|
private Long auditId;
|
/**
|
* 审核阶段
|
*/
|
private String stage;
|
/**
|
* 阶段详情
|
*/
|
private String detail;
|
/**
|
* 创建时间
|
*/
|
private Date createdAt;
|
|
public interface Stage {
|
String tjzl = "提交资料";
|
String ybh = "已驳回";
|
String cxtj = "重新提交";
|
String shtg = "审核通过";
|
}
|
|
}
|