/*
|
* 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 org.sxkj.gd.workorder.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import org.springblade.core.mp.base.BaseEntity;
|
|
/**
|
* 流程记录表 实体类
|
*
|
* @author lw
|
* @since 2026-01-14
|
*/
|
@Data
|
@TableName("ja_gd_work_order_flow")
|
@ApiModel(value = "GdWorkOrderFlow对象", description = "流程记录表")
|
@EqualsAndHashCode(callSuper = true)
|
public class GdWorkOrderFlowEntity extends BaseEntity {
|
|
/**
|
* 流转名称
|
*/
|
@ApiModelProperty(value = "流转名称")
|
private String flowName;
|
/**
|
* 流转描述
|
*/
|
@ApiModelProperty(value = "流转描述")
|
private String flowDesc;
|
|
/**
|
* 流程状态
|
*/
|
@ApiModelProperty(value = "流程状态 1.工单发布,2.接单响应,3.执行中 4.完成待验 5.验收通过 6.结算完成")
|
private String flowStatus;
|
/**
|
* 工单状态
|
*/
|
@ApiModelProperty(value = "工单状态工单状态:0草稿、10发布中_接单中、11发布中_拒绝接单、20响应中_待拆分、21响应中_申请取消、22响应中_申请修改、23响应中_已取消、30执行中_待全部完成、31执行中_协商修改、40完成待验_待全部验收、50验收通过_待结算、60结算完成_已结算")
|
private String workStatus;
|
/**
|
* 关联工单任务表ID/巡查任务ID
|
*/
|
@ApiModelProperty(value = "关联工单任务表ID/巡查任务ID")
|
private Long workOrderId;
|
/**
|
* 操作人
|
*/
|
@ApiModelProperty(value = "操作人")
|
private String operator;
|
/**
|
* 类型(0工单任务 1巡查任务)
|
*/
|
@ApiModelProperty(value = "类型(0工单任务 1巡查任务)")
|
private String type;
|
/**
|
* 区域编码
|
*/
|
@ApiModelProperty(value = "区域编码")
|
private String areaCode;
|
|
}
|