|
@@ -23,7 +23,7 @@ public class CgInfoEntity extends BaseEntity<Long> implements Cloneable {
|
|
|
|
|
|
private static final long serialVersionUID = 622928578418850812L;
|
|
private static final long serialVersionUID = 622928578418850812L;
|
|
|
|
|
|
- private long id;
|
|
|
|
|
|
+ private Long id;
|
|
private Date buildDate;
|
|
private Date buildDate;
|
|
private GqEntity szgq;
|
|
private GqEntity szgq;
|
|
private String bh;
|
|
private String bh;
|
|
@@ -32,7 +32,7 @@ public class CgInfoEntity extends BaseEntity<Long> implements Cloneable {
|
|
private String contactPhone;
|
|
private String contactPhone;
|
|
private String contactEmail;
|
|
private String contactEmail;
|
|
private String cgForm;
|
|
private String cgForm;
|
|
- private double zgVolume;
|
|
|
|
|
|
+ private double cgVolume;
|
|
private String cgMaterial;
|
|
private String cgMaterial;
|
|
private String haveDesignInfo;
|
|
private String haveDesignInfo;
|
|
private String designOrgName;
|
|
private String designOrgName;
|
|
@@ -60,21 +60,20 @@ public class CgInfoEntity extends BaseEntity<Long> implements Cloneable {
|
|
return Constants.SEQ_CG_INFO;
|
|
return Constants.SEQ_CG_INFO;
|
|
}
|
|
}
|
|
|
|
|
|
- @Id
|
|
|
|
- public long getID() {
|
|
|
|
- return ID;
|
|
|
|
|
|
+ @Id
|
|
|
|
+ public Long getId() {
|
|
|
|
+ return id;
|
|
}
|
|
}
|
|
- public void setID(long iD) {
|
|
|
|
- ID = iD;
|
|
|
|
|
|
+
|
|
|
|
+ public void setId(Long id) {
|
|
|
|
+ this.id = id;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
public Date getBuildDate() {
|
|
public Date getBuildDate() {
|
|
return buildDate;
|
|
return buildDate;
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
public void setBuildDate(Date buildDate) {
|
|
public void setBuildDate(Date buildDate) {
|
|
this.buildDate = buildDate;
|
|
this.buildDate = buildDate;
|
|
}
|
|
}
|
|
@@ -177,15 +176,13 @@ public class CgInfoEntity extends BaseEntity<Long> implements Cloneable {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- public double getZgVolume() {
|
|
|
|
- return zgVolume;
|
|
|
|
|
|
+ public double getCgVolume() {
|
|
|
|
+ return cgVolume;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- public void setZgVolume(double zgVolume) {
|
|
|
|
- this.zgVolume = zgVolume;
|
|
|
|
|
|
+ public void setCgVolume(double cgVolume) {
|
|
|
|
+ this.cgVolume = cgVolume;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|