维护列表实体类+功能

master
Qin Dong Ming 2024-08-28 20:45:12 +08:00
parent 871f190eab
commit e9cbc42483
1 changed files with 21 additions and 0 deletions

View File

@ -20,11 +20,32 @@ import java.util.List;
@NoArgsConstructor
@Builder
public class EngineReq {
/**
*
*/
private Long id;
/**
*
*/
private String name;
/**
*
*/
private Integer type;
/**
*
*/
private Integer scope;
/**
*
*/
private String isActivate;
/**
*
*/
private String status;
/**
*
*/
private List<EngineMaintenance> engineMaintenanceList;
}