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.

30 lines
703 B

package com.qyft.ms.model.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotBlank;
import lombok.Data;
import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper = false)
@Schema(description = "实验步骤")
@TableName("task_steps")
@Data
public class TaskSteps {
@NotBlank
@Schema(description = "id")
private Long id;
@NotBlank
@Schema(description = "实验id")
private Long taskId;
@NotBlank
@Schema(description = "步骤描述")
private String stepDescription;
@NotBlank
@Schema(description = "创建时间")
private String createTime;
}