|
|
@@ -1,17 +1,17 @@
|
|
|
package com.goafanti.common.model;
|
|
|
|
|
|
-import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
+import java.io.Serializable;
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 公出表(PublicRelease)实体类
|
|
|
*
|
|
|
* @author makejava
|
|
|
- * @since 2025-09-02 11:22:46
|
|
|
+ * @since 2025-09-19 13:47:05
|
|
|
*/
|
|
|
public class PublicRelease implements Serializable {
|
|
|
- private static final long serialVersionUID = 633295198365381700L;
|
|
|
+ private static final long serialVersionUID = -51940966855825670L;
|
|
|
|
|
|
private Integer id;
|
|
|
/**
|
|
|
@@ -178,6 +178,10 @@ public class PublicRelease implements Serializable {
|
|
|
* 0=无需多级审核,1=1级审核,2=2级审核,4=完成审核
|
|
|
*/
|
|
|
private Integer processStatus;
|
|
|
+ /**
|
|
|
+ * 发起人名称
|
|
|
+ */
|
|
|
+ private String aname;
|
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
|
@@ -516,5 +520,13 @@ public class PublicRelease implements Serializable {
|
|
|
this.processStatus = processStatus;
|
|
|
}
|
|
|
|
|
|
+ public String getAname() {
|
|
|
+ return aname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAname(String aname) {
|
|
|
+ this.aname = aname;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|