New file |
| | |
| | | package com.ycl.platform.domain.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ycl.platform.base.AbsEntity; |
| | | import enumeration.general.WorkOrderDistributeWayEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | /** |
| | | * 工单下发记录 |
| | | * |
| | | * @author gonghl |
| | | * @since 2024-04-17 |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @TableName("t_work_order_distribute_record") |
| | | @ApiModel(value = "WorkOrderAuditingRecord对象", description = "工单下发记录") |
| | | @AllArgsConstructor |
| | | @NoArgsConstructor |
| | | public class WorkOrderDistributeRecord extends AbsEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty("工单ID") |
| | | @TableField("work_order_id") |
| | | private Integer workOrderId; |
| | | |
| | | @ApiModelProperty("下发人") |
| | | @TableField("user_id") |
| | | private Long userId; |
| | | |
| | | @ApiModelProperty("下发方式") |
| | | @TableField("distribute_way") |
| | | private WorkOrderDistributeWayEnum distributeWay; |
| | | |
| | | } |