package com.thhy.staff.modules.biz.applyhistory.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
/**
|
*
|
* @author zhang_xiao_bo
|
* @since 2023-05-29 16:38:12
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class UserApplyHistory implements Serializable {
|
|
|
/**
|
* 审核说明
|
*/
|
|
|
private String applyDesc;
|
|
/**
|
* 1成功2失败
|
*/
|
|
|
private Integer applyResult;
|
|
|
|
private Date createTime;
|
|
|
|
private String createUser;
|
|
|
|
private String platUserId;
|
|
|
|
private Integer processFlag;
|
|
|
@Idkey
|
private String recordId;
|
|
|
|
|
private String userId;
|
|
|
private String departId;
|
}
|