核查系统api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.2 KiB

package com.iflytop.nuclear.model;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date;
/**
* @author cool
* @date 2023/6/28 11:29
*/
@Data
@TableName("task")
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class Task {
@TableId
private int id;
@TableField("operator_id")
private String operatorId;
@TableField("publish_id")
private String publishedId;
@TableField("excel_position")
private String excelPosition;
@TableField("nuclear_core_id")
private Long nuclearCoreId;
@TableField("nuclear_station_id")
private Long nuclearStationId;
private int status;
@TableField("publish_time")
private Date publishTime;
@TableField("task_name")
private String taskName;
@TableField("check_order")
private int checkOrder;
@TableField("start_time")
private Date startTime;
@TableField("end_time")
private Date endTime;
@TableField("current_coord")
private String currentCoord;
}