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.pojo.vo;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class ActionDTO {
|
|
|
|
/**
|
|
* type为枚举,分为2中类型,tool 体格检查工具 ancillary 辅助检查
|
|
*/
|
|
private String actionType;
|
|
|
|
private String actionId;
|
|
}
|