Explorar el Código

提交实体类

Heyuan hace 3 semanas
padre
commit
1a8c9d69ab
Se han modificado 1 ficheros con 27 adiciones y 0 borrados
  1. 27 0
      src/com/kingdee/eas/custom/beisen/entity/PhaseStatusInfo.java

+ 27 - 0
src/com/kingdee/eas/custom/beisen/entity/PhaseStatusInfo.java

@@ -0,0 +1,27 @@
+package com.kingdee.eas.custom.beisen.entity;
+
+/**
+ * @Description ±±É­½×¶Î״̬
+ * @Date 2025/7/8 13:46
+ * @Created by Heyuan
+ */
+public class PhaseStatusInfo {
+    private String phaseId;
+    private String statusId;
+
+    private PhaseStatusInfo() {
+    }
+
+    public PhaseStatusInfo(String phaseId, String statusId) {
+        this.phaseId = phaseId;
+        this.statusId = statusId;
+    }
+
+    public String getPhaseId() {
+        return phaseId;
+    }
+
+    public String getStatusId() {
+        return statusId;
+    }
+}