|
@@ -0,0 +1,22 @@
|
|
|
+package org.jeecg.modules.actualControl.billetActual.billetActual.entity;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 炉次实绩定尺规则统计
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2024-05-16
|
|
|
+ * @Version: V1.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class BilletBasicInfoLength implements Serializable {
|
|
|
+
|
|
|
+ /**数量*/
|
|
|
+ private Integer sum;
|
|
|
+
|
|
|
+
|
|
|
+ /**定尺*/
|
|
|
+ private Integer length;
|
|
|
+}
|