001/*
002 *    Copyright 2024-2025, Warm-Flow (290631660@qq.com).
003 *
004 *    Licensed under the Apache License, Version 2.0 (the "License");
005 *    you may not use this file except in compliance with the License.
006 *    You may obtain a copy of the License at
007 *
008 *       https://www.apache.org/licenses/LICENSE-2.0
009 *
010 *    Unless required by applicable law or agreed to in writing, software
011 *    distributed under the License is distributed on an "AS IS" BASIS,
012 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 *    See the License for the specific language governing permissions and
014 *    limitations under the License.
015 */
016package org.dromara.warm.flow.core.entity;
017
018import java.util.Date;
019
020/**
021 * 流程用户 flow_user
022 *
023 * @author xiarg
024 * @since 2024/5/10 10:41
025 */
026public interface User extends RootEntity {
027
028    public Long getId();
029
030    public User setId(Long id);
031
032    public Date getCreateTime();
033
034    public User setCreateTime(Date createTime);
035
036    public String getCreateBy();
037
038    public User setCreateBy(String createBy);
039
040    public Date getUpdateTime();
041
042    public User setUpdateTime(Date updateTime);
043
044    public String getTenantId();
045
046    public User setTenantId(String tenantId);
047
048    public String getDelFlag();
049
050    public User setDelFlag(String delFlag);
051
052    public String getType();
053
054    public User setType(String type);
055
056    public String getProcessedBy();
057
058    public User setProcessedBy(String processedBy);
059
060    public Long getAssociated();
061
062    public User setAssociated(Long associated);
063}