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.
21 lines
370 B
Java
21 lines
370 B
Java
package com.glxp.api.vo.dev;
|
|
|
|
import com.glxp.api.entity.dev.DeviceUpkeepEntity;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class DeviceUpkeepDetailVo {
|
|
|
|
String deviceCode;
|
|
String deptName;
|
|
Boolean finishFlag;
|
|
String manufactory;
|
|
Integer itemCount;
|
|
Integer exceptionCount;
|
|
Integer finishCount;
|
|
Integer deviceCount;
|
|
String createUserName;
|
|
|
|
|
|
}
|