|
|
@@ -11,10 +11,10 @@ import java.util.Date;
|
|
|
* 客户档案表(UserArchives)实体类
|
|
|
*
|
|
|
* @author makejava
|
|
|
- * @since 2025-04-11 09:39:23
|
|
|
+ * @since 2025-04-16 10:04:46
|
|
|
*/
|
|
|
public class UserArchives implements Serializable {
|
|
|
- private static final long serialVersionUID = 907641518706679781L;
|
|
|
+ private static final long serialVersionUID = 354421259089616603L;
|
|
|
|
|
|
private Integer id;
|
|
|
|
|
|
@@ -123,6 +123,10 @@ public class UserArchives implements Serializable {
|
|
|
* 财务数据-研发费用(万元)
|
|
|
*/
|
|
|
private BigDecimal financialRd;
|
|
|
+ /**
|
|
|
+ * 标准 0=无,1=有
|
|
|
+ */
|
|
|
+ private Integer standard;
|
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
|
@@ -351,5 +355,13 @@ public class UserArchives implements Serializable {
|
|
|
this.financialRd = financialRd;
|
|
|
}
|
|
|
|
|
|
+ public Integer getStandard() {
|
|
|
+ return standard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStandard(Integer standard) {
|
|
|
+ this.standard = standard;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|