|
|
@@ -59,7 +59,6 @@ public class UserArchives implements Serializable {
|
|
|
*/
|
|
|
private Date createTime;
|
|
|
|
|
|
-
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -77,7 +76,6 @@ public class UserArchives implements Serializable {
|
|
|
}
|
|
|
|
|
|
public Integer getPatentCount() {
|
|
|
- if (patentCount == null)return 0;
|
|
|
return patentCount;
|
|
|
}
|
|
|
|
|
|
@@ -86,7 +84,6 @@ public class UserArchives implements Serializable {
|
|
|
}
|
|
|
|
|
|
public Integer getInventionPatentCount() {
|
|
|
- if (inventionPatentCount == null)return 0;
|
|
|
return inventionPatentCount;
|
|
|
}
|
|
|
|
|
|
@@ -95,7 +92,6 @@ public class UserArchives implements Serializable {
|
|
|
}
|
|
|
|
|
|
public Integer getUtilityModelCount() {
|
|
|
- if (utilityModelCount == null)return 0;
|
|
|
return utilityModelCount;
|
|
|
}
|
|
|
|
|
|
@@ -104,7 +100,6 @@ public class UserArchives implements Serializable {
|
|
|
}
|
|
|
|
|
|
public Integer getAppearancePatentCount() {
|
|
|
- if (appearancePatentCount == null)return 0;
|
|
|
return appearancePatentCount;
|
|
|
}
|
|
|
|
|
|
@@ -113,7 +108,6 @@ public class UserArchives implements Serializable {
|
|
|
}
|
|
|
|
|
|
public Integer getSoftwareWorksCount() {
|
|
|
- if (softwareWorksCount == null)return 0;
|
|
|
return softwareWorksCount;
|
|
|
}
|
|
|
|
|
|
@@ -122,7 +116,6 @@ public class UserArchives implements Serializable {
|
|
|
}
|
|
|
|
|
|
public Integer getOtherCount() {
|
|
|
- if (otherCount == null)return 0;
|
|
|
return otherCount;
|
|
|
}
|
|
|
|