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.example.vo;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
@Data
|
|
public class Picture {
|
|
//文件id
|
|
private String picid;
|
|
//文件名
|
|
private String picname;
|
|
//患者id
|
|
private String fileid;
|
|
//工具要用的参数 旋转角度
|
|
private Double rotatedegree;
|
|
//分段id
|
|
private String pickind;
|
|
|
|
|
|
}
|