You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.1 KiB
116 lines
2.1 KiB
package com.ccic.safeliab.entity; |
|
|
|
import com.baomidou.mybatisplus.annotation.*; |
|
|
|
import java.util.Date; |
|
import java.io.Serializable; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
import lombok.Data; |
|
import lombok.EqualsAndHashCode; |
|
import lombok.experimental.Accessors; |
|
|
|
/** |
|
* <p> |
|
* |
|
* </p> |
|
* |
|
* @author testjava |
|
* @since 2022-09-08 |
|
*/ |
|
@Data |
|
@EqualsAndHashCode(callSuper = false) |
|
@Accessors(chain = true) |
|
@TableName("tbl_public_audit") |
|
public class PublicAudit implements Serializable { |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
/** |
|
* 主键id |
|
*/ |
|
@TableId(value = "id", type = IdType.NONE) |
|
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
private Long id; |
|
|
|
/** |
|
* 业务ID |
|
*/ |
|
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
private Long businessId; |
|
|
|
/** |
|
* 当前审核机构id |
|
*/ |
|
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
private Long organId; |
|
|
|
/** |
|
* 当前审核机构名称 |
|
*/ |
|
private String organName; |
|
|
|
/** |
|
* 审核机构下级机构id |
|
*/ |
|
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
private Long subordinateOrganId; |
|
|
|
/** |
|
* 审核机构下级机构名称 |
|
*/ |
|
private String subordinateOrganName; |
|
|
|
/** |
|
* 审核时间 |
|
*/ |
|
private Date auditAt; |
|
|
|
/** |
|
* 审核状态,1:待审核 2:被驳回 3:审核中 10:已通过 |
|
*/ |
|
private Integer auditStatus; |
|
|
|
/** |
|
* 审核人id |
|
*/ |
|
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
private Long auditUserId; |
|
|
|
/** |
|
* 审核人名称 |
|
*/ |
|
private String auditUserName; |
|
|
|
/** |
|
* 驳回原因 |
|
*/ |
|
private String rejectReason; |
|
|
|
/** |
|
* 创建时间 |
|
*/ |
|
@TableField(fill = FieldFill.INSERT) |
|
private Date createdAt; |
|
|
|
/** |
|
* 修改时间 |
|
*/ |
|
@TableField(fill = FieldFill.INSERT_UPDATE) |
|
private Date changedAt; |
|
|
|
/** |
|
* 是否存在上级 1:存在2:不存在 |
|
*/ |
|
private Integer isSup; |
|
|
|
/** |
|
* 业务类型 |
|
*/ |
|
private String businessType; |
|
|
|
/** |
|
* 审核意见 |
|
*/ |
|
private String auditOpinion; |
|
}
|
|
|