You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.supervision.domain;
|
|
|
|
import lombok.Data;
|
|
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Table;
|
|
|
|
/**
|
|
* 手术史
|
|
*/
|
|
@Data
|
|
@Table(name = "operation_history")
|
|
public class OperationHistoryVertex {
|
|
|
|
@Id
|
|
private String id;
|
|
|
|
private String nodeValue;
|
|
}
|