| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /*
- * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * Neither the name of the dreamlu.net developer nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- * Author: Chill 庄骞 (smallchill@163.com)
- */
- package com.blade.check.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.time.LocalDateTime;
- import java.io.Serializable;
- import java.util.Date;
- import java.util.List;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * 审批流配置主表实体类
- *
- * @author BladeX
- * @since 2021-12-07
- */
- @Data
- @ApiModel(value = "AuditPaths对象", description = "审批流配置主表")
- public class AuditPaths implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 审核路径ID
- */
- @ApiModelProperty(value = "审核路径ID")
- private Long pathId;
- /**
- * 审核路径名称
- */
- @ApiModelProperty(value = "审核路径名称")
- private String pathName;
- /**
- * 维护人id
- */
- @ApiModelProperty(value = "维护人id")
- private Long opUserId;
- /**
- * 维护人
- */
- @ApiModelProperty(value = "维护人")
- private String opUserName;
- /**
- * 维护时间
- */
- @ApiModelProperty(value = "维护时间")
- private Date opDate;
- /**
- * 承包单位id
- */
- @ApiModelProperty(value = "承包单位id")
- private Integer branchId;
- /**
- * N-新建;A-有效;S-停用; Z暂存
- */
- @ApiModelProperty(value = "N-新建;A-有效;S-停用; Z暂存")
- private String status;
- /**
- * 备注
- */
- @ApiModelProperty(value = "备注")
- private String remarks;
- @ApiModelProperty(value = "审批流配置明细级别表")
- @TableField(exist = false)
- private List<AuditPathsLevels> auditPathsLevels;
- @ApiModelProperty(value = "租户id")
- private String tenantId;
- }
|