Lius
2024-06-18 5c2bfd01241c2790c860ef17c127a788556384cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package org.jeecg.modules.mdc.vo;
 
import lombok.Data;
import org.jeecg.modules.mdc.util.DateAdapter;
 
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import java.util.Date;
 
/**
 * @author Lius
 * @date 2024/6/11 16:31
 */
@Data
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "equipment")
public class WsEquipmentUtilizationRate {
 
    @XmlElement
    private String equipmentCode;
 
    @XmlElement
    private String equipmentName;
 
    @XmlElement
    private String mainDeptCode;
 
    @XmlElement
    private String equipmentRate;
 
    @XmlElement
    private String equipmentRunTime;
 
    @XmlElement
    private String equipmentCalendar;
 
    @XmlElement
    private String statisType;
 
    @XmlElement
    @XmlJavaTypeAdapter(DateAdapter.class)
    private Date statisDate;
}