Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
eb084d3904
@ -0,0 +1,25 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.model;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* KPI接口数据
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class KPIModel {
|
||||||
|
private Integer salesOrderCount;
|
||||||
|
|
||||||
|
private Integer productOrderCount;
|
||||||
|
|
||||||
|
private Integer schedWorkCount;
|
||||||
|
|
||||||
|
private Integer noSchedWorkCount;
|
||||||
|
|
||||||
|
private Integer confirmOrderCount;
|
||||||
|
|
||||||
|
private String produceTimes;
|
||||||
|
|
||||||
|
private String settingTimes;
|
||||||
|
|
||||||
|
private Integer overdueSalesCount;
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.model;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.aps.converter.CustomDateDeserializer;
|
||||||
|
import cn.estsh.i3plus.pojo.aps.converter.CustomDateSerializer;
|
||||||
|
import cn.estsh.i3plus.pojo.base.enumutil.ApsEnumUtil;
|
||||||
|
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
||||||
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class ResourceLodaRequest {
|
||||||
|
private ApsEnumUtil.RESOURCE_LOAD_SPAN span;
|
||||||
|
@JsonSerialize(using = CustomDateSerializer.class)
|
||||||
|
@JsonDeserialize(using = CustomDateDeserializer.class)
|
||||||
|
private Date begin; // 统计开始时间
|
||||||
|
@JsonSerialize(using = CustomDateSerializer.class)
|
||||||
|
@JsonDeserialize(using = CustomDateDeserializer.class)
|
||||||
|
private Date end; // 统计结束时间
|
||||||
|
|
||||||
|
private Long[] resourceIds;
|
||||||
|
}
|
Loading…
Reference in New Issue