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
592 B
42 lines
592 B
package rd.data.db.table;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
public class ExperimentItem implements Serializable {
|
|
/**
|
|
* 实验项目id
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* 项目名称
|
|
*/
|
|
private String name;
|
|
|
|
/**
|
|
* 课程id
|
|
*/
|
|
private Long course;
|
|
|
|
/**
|
|
* create_time
|
|
*/
|
|
private LocalDateTime createTime;
|
|
|
|
/**
|
|
* edit_time
|
|
*/
|
|
private LocalDateTime editTime;
|
|
|
|
/**
|
|
* delete
|
|
*/
|
|
private Boolean deleted;
|
|
|
|
public ExperimentItem() {
|
|
}
|
|
}
|
|
|