| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- * 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.TableId;
- import java.io.Serializable;
- 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 = "AuditPathsActs对象", description = "审批流配置明细表")
- public class AuditPathsActs implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 承包单位id
- */
- @ApiModelProperty(value = "承包单位id")
- private Integer branchId;
- /**
- * 活动号
- */
- @ApiModelProperty(value = "1:代表财务清核 ")
- private int actId;
- /**
- * 审核条件(O是正常审批,I非正常审批)
- */
- @ApiModelProperty(value = "审核条件(O是正常审批,I非正常审批)")
- private String reviewConditions;
- /**
- * 审核路径Id
- */
- @ApiModelProperty(value = "审核路径Id")
- private Long pathId;
- /**
- * 存储对应审批字段
- */
- @ApiModelProperty(value = "存储对应审批字段")
- private String fidStatus;
- @ApiModelProperty(value = "活动名")
- private String actName;
- @ApiModelProperty(value = "租户id")
- private String tenantId;
- }
|