1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- package com.huimv.admin.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.time.LocalDateTime;
- import java.io.Serializable;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * <p>
- * 流程表
- * </p>
- *
- * @author author
- * @since 2023-07-21
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("base_process")
- public class BaseProcess implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 目的地
- */
- private String destName;
- /**
- * 目的地 id
- */
- private Integer destId;
- /**
- * 申请人
- */
- private String admissionUserName;
- /**
- * 申请人id
- */
- private Integer admissionUserId;
- /**
- * 提交时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
- private Date subDate;
- /**
- * 修改时间
- */
- private String updateDate;
- /**
- * 当前位置 状态
- */
- private String currentStatus;
- /**
- * 当前位置
- */
- private String currentLocation;
- /**
- * 当前位置id
- */
- private String currentLocationId;
- private Integer farmId;
- /**
- * 0 进行中,1已完成,2拒绝(提前结束)
- */
- private Integer processType;
- }
|