|
@@ -70,9 +70,9 @@ public class JyrEntity extends BaseEntity<Long> implements Cloneable {
|
|
|
/** 工商营业执照编号 */
|
|
|
private String gsyyzzbh = null;
|
|
|
/** 投资总额 */
|
|
|
- private Integer tzze;
|
|
|
+ private Double tzze;
|
|
|
/** 注册资本 */
|
|
|
- private Integer zczb;
|
|
|
+ private Double zczb;
|
|
|
/** 港口危险货物作业附证编号 */
|
|
|
private String gkwxhwzyfzbh = null;
|
|
|
/** 港口设施保安符合证书编号 */
|
|
@@ -309,19 +309,19 @@ public class JyrEntity extends BaseEntity<Long> implements Cloneable {
|
|
|
this.gsyyzzbh = gsyyzzbh;
|
|
|
}
|
|
|
|
|
|
- public Integer getTzze() {
|
|
|
+ public Double getTzze() {
|
|
|
return tzze;
|
|
|
}
|
|
|
|
|
|
- public void setTzze(Integer tzze) {
|
|
|
+ public void setTzze(Double tzze) {
|
|
|
this.tzze = tzze;
|
|
|
}
|
|
|
|
|
|
- public Integer getZczb() {
|
|
|
+ public Double getZczb() {
|
|
|
return zczb;
|
|
|
}
|
|
|
|
|
|
- public void setZczb(Integer zczb) {
|
|
|
+ public void setZczb(Double zczb) {
|
|
|
this.zczb = zczb;
|
|
|
}
|
|
|
|