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.
20 lines
276 B
Java
20 lines
276 B
Java
1 year ago
|
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 name;
|
||
|
}
|