业务逻辑完善补充
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
package com.vetti.hotake.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.vetti.common.annotation.Excel;
|
||||
import com.vetti.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 用户合规性信息对象 hotake_compliance_info
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2026-01-18
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class HotakeComplianceInfo extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键ID */
|
||||
@ApiModelProperty("主键ID")
|
||||
private Long id;
|
||||
|
||||
/** 用户ID */
|
||||
@ApiModelProperty("用户ID")
|
||||
@Excel(name = "用户ID")
|
||||
private Long userId;
|
||||
|
||||
/** 名称 */
|
||||
@ApiModelProperty("名称")
|
||||
@Excel(name = "名称")
|
||||
private String fileName;
|
||||
|
||||
/** 附件类型(如:image/jpeg, application/pdf等) */
|
||||
@ApiModelProperty("附件类型(如:image/jpeg, application/pdf等)")
|
||||
@Excel(name = "附件类型", readConverterExp = "如=:image/jpeg,,a=pplication/pdf等")
|
||||
private String fileType;
|
||||
|
||||
/** 附件地址 */
|
||||
@ApiModelProperty("附件地址")
|
||||
@Excel(name = "附件地址")
|
||||
private String fileUrl;
|
||||
|
||||
/** 附件文件后缀 */
|
||||
@ApiModelProperty("附件文件后缀")
|
||||
@Excel(name = "附件文件后缀")
|
||||
private String fileSuffix;
|
||||
|
||||
/** 附件文件大小 */
|
||||
@ApiModelProperty("附件文件大小")
|
||||
@Excel(name = "附件文件大小")
|
||||
private String fileSizeShow;
|
||||
|
||||
/** 状态(verified 验证,pending 待验证) */
|
||||
@ApiModelProperty("状态(verified 验证,pending 待验证)")
|
||||
@Excel(name = "状态", readConverterExp = "v=erified,验=证,pending,待=验证")
|
||||
private String status;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
package com.vetti.hotake.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.vetti.common.annotation.Excel;
|
||||
import com.vetti.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 岗位申请操作信息对象 hotake_roles_apply_oper_record
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2026-01-18
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class HotakeRolesApplyOperRecord extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键ID */
|
||||
@ApiModelProperty("主键ID")
|
||||
private Long id;
|
||||
|
||||
/** 岗位ID */
|
||||
@ApiModelProperty("岗位ID")
|
||||
@Excel(name = "岗位ID")
|
||||
private Long roleId;
|
||||
|
||||
/** 岗位申请ID */
|
||||
@ApiModelProperty("岗位申请ID")
|
||||
@Excel(name = "岗位申请ID")
|
||||
private Long roleApplyId;
|
||||
|
||||
/** 当前阶段 */
|
||||
@ApiModelProperty("当前阶段")
|
||||
@Excel(name = "当前阶段")
|
||||
private String applyStage;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user