办公V3
This commit is contained in:
46
klp-hrm/src/main/java/com/klp/hrm/domain/HrmFlowCc.java
Normal file
46
klp-hrm/src/main/java/com/klp/hrm/domain/HrmFlowCc.java
Normal file
@@ -0,0 +1,46 @@
|
||||
package com.klp.hrm.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.klp.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 抄送记录
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@TableName("hrm_flow_cc")
|
||||
public class HrmFlowCc extends BaseEntity {
|
||||
|
||||
@TableId
|
||||
private Long ccId;
|
||||
|
||||
private Long instId;
|
||||
|
||||
private String bizType;
|
||||
|
||||
private Long bizId;
|
||||
|
||||
private Long nodeId;
|
||||
|
||||
/** 触发抄送的节点名称(可读名) */
|
||||
private String nodeName;
|
||||
|
||||
/** 是否已读 0未读 1已读 */
|
||||
private Integer readFlag;
|
||||
|
||||
/** 被抄送的用户ID */
|
||||
private Long ccUserId;
|
||||
|
||||
/** 触发抄送的操作人(一般为当前审批人) */
|
||||
private Long fromUserId;
|
||||
|
||||
private String remark;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user