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 = "treatment_plan")
|
|
public class TreatmentPlanVertex {
|
|
|
|
@Id
|
|
private String id;
|
|
|
|
private String name;
|
|
}
|