zhangherong
2025-04-21 ebc4996578cc06cacda5561a45a4dfc2c951d070
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.jeecg.modules.eam.request;
 
import lombok.Data;
 
@Data
public class EamEquipmentQuery {
    private String equipmentCode;
    private String equipmentName;
    private String equipmentImportance;
    private String assetStatus;
    private String technologyStatus;
    private String operationSystem;
    private String orgId;
    private String equipmentCategory;
 
    private String column;
    private String order;
}