|
|
@ -0,0 +1,39 @@ |
|
|
|
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; |
|
|
|
|
|
|
|
/** |
|
|
|
* @author cool |
|
|
|
* @date 2023/6/28 11:29 |
|
|
|
*/ |
|
|
|
@Data |
|
|
|
@TableName("nuclear_core_config") |
|
|
|
@Builder |
|
|
|
@NoArgsConstructor |
|
|
|
@AllArgsConstructor |
|
|
|
public class NuclearCoreConfig { |
|
|
|
|
|
|
|
@TableId |
|
|
|
private Long id; |
|
|
|
@TableField("task_id") |
|
|
|
private Long taskId; |
|
|
|
@TableField("first_sign") |
|
|
|
private String firstSign; |
|
|
|
@TableField("serial_number") |
|
|
|
private String serialNumber; |
|
|
|
@TableField("second_sign") |
|
|
|
private String secondSign; |
|
|
|
private Double percent; |
|
|
|
@TableField("result_serial") |
|
|
|
private String resultSerial; |
|
|
|
@TableField("result_img") |
|
|
|
private String resultImg; |
|
|
|
private int result; |
|
|
|
|
|
|
|
} |