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.
42 lines
847 B
42 lines
847 B
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 Long id;
|
|
@TableField("operator_id")
|
|
private Long operatorId;
|
|
|
|
@TableField("excel_position")
|
|
private String excelPosition;
|
|
|
|
@TableField("nuclear_core_id")
|
|
private Long nuclearCoreId;
|
|
|
|
private int status;
|
|
|
|
@TableField("start_time")
|
|
private Date startTime;
|
|
|
|
@TableField("end_time")
|
|
private Date endTime;
|
|
}
|