From f68d3c71819feb59e7a227a5d992b059b900916c Mon Sep 17 00:00:00 2001 From: ZengTao <2773468879@qq.com> Date: 星期五, 28 三月 2025 08:28:26 +0800 Subject: [PATCH] 修改报表,界面添加查询流程卡个数,调整推送数据到前端的间隔 --- hangzhoumesParent/moduleService/LoadGlassModule/src/main/java/com/mes/engineering/entity/Engineering.java | 101 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 101 insertions(+), 0 deletions(-) diff --git a/hangzhoumesParent/moduleService/LoadGlassModule/src/main/java/com/mes/engineering/entity/Engineering.java b/hangzhoumesParent/moduleService/LoadGlassModule/src/main/java/com/mes/engineering/entity/Engineering.java new file mode 100644 index 0000000..c9321fa --- /dev/null +++ b/hangzhoumesParent/moduleService/LoadGlassModule/src/main/java/com/mes/engineering/entity/Engineering.java @@ -0,0 +1,101 @@ +package com.mes.engineering.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; + +/** + * <p> + * + * </p> + * + * @author wu + * @since 2024-04-22 + */ +@Data +@EqualsAndHashCode(callSuper = false) +public class Engineering implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 宸ョ▼琛╥d + */ + @TableId(value = "id", type = IdType.AUTO) + private Long id; + + /** + * 宸ョ▼鍙� + */ + private String engineerId; + + /** + * 宸ョ▼鍚嶇О + */ + private String engineerName; + + /** + * 骞冲潎鍒╃敤鐜� + */ + private double avgAvailability; + + /** + * 鏈夋晥鍒╃敤鐜� + */ + private double validAvailability; + + /** + * 灏剧墖鍒╃敤鐜� + */ + private double lastAvailability; + + /** + * 鐘舵�� + */ + private Integer state; + + /** + * 灏忕墖鎬绘暟 + */ + private Integer glassTotal; + + /** + * 灏忕墖鎬婚潰绉� + */ + private double glassTotalArea; + + /** + * 璁″垝鍘熺墖鎬绘暟 + */ + private Integer planPatternTotal; + + /** + * 璁″垝鍘熺墖鎬婚潰绉� + */ + private double planPatternTotalArea; + + /** + * 瀹為檯鍘熺墖鎬绘暟 + */ + private Integer realityPatternTotal; + + /** + * 瀹為檯鍘熺墖鎬婚潰绉� + */ + private double realityPatternTotalArea; + + /** + * 鑶滅郴id + */ + private String filmsId; + + /** + * 澶囨敞 + */ + private String notes; + + +} -- Gitblit v1.8.0