|
|
@@ -1,67 +1,81 @@
|
|
|
package com.java110.po.contractRoom;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
|
|
|
public class ContractRoomPo implements Serializable {
|
|
|
|
|
|
private String crId;
|
|
|
-private String ownerName;
|
|
|
-private String contractId;
|
|
|
-private String statusCd = "0";
|
|
|
-private String ownerId;
|
|
|
-private String storeId;
|
|
|
-private String roomId;
|
|
|
-private String roomName;
|
|
|
-public String getCrId() {
|
|
|
+ private String ownerName;
|
|
|
+ private String contractId;
|
|
|
+ private String statusCd = "0";
|
|
|
+ private String ownerId;
|
|
|
+ private String storeId;
|
|
|
+ private String roomId;
|
|
|
+ private String roomName;
|
|
|
+
|
|
|
+ public String getCrId() {
|
|
|
return crId;
|
|
|
}
|
|
|
-public void setCrId(String crId) {
|
|
|
+
|
|
|
+ public void setCrId(String crId) {
|
|
|
this.crId = crId;
|
|
|
}
|
|
|
-public String getOwnerName() {
|
|
|
+
|
|
|
+ public String getOwnerName() {
|
|
|
return ownerName;
|
|
|
}
|
|
|
-public void setOwnerName(String ownerName) {
|
|
|
+
|
|
|
+ public void setOwnerName(String ownerName) {
|
|
|
this.ownerName = ownerName;
|
|
|
}
|
|
|
-public String getContractId() {
|
|
|
+
|
|
|
+ public String getContractId() {
|
|
|
return contractId;
|
|
|
}
|
|
|
-public void setContractId(String contractId) {
|
|
|
+
|
|
|
+ public void setContractId(String contractId) {
|
|
|
this.contractId = contractId;
|
|
|
}
|
|
|
-public String getStatusCd() {
|
|
|
+
|
|
|
+ public String getStatusCd() {
|
|
|
return statusCd;
|
|
|
}
|
|
|
-public void setStatusCd(String statusCd) {
|
|
|
+
|
|
|
+ public void setStatusCd(String statusCd) {
|
|
|
this.statusCd = statusCd;
|
|
|
}
|
|
|
-public String getOwnerId() {
|
|
|
+
|
|
|
+ public String getOwnerId() {
|
|
|
return ownerId;
|
|
|
}
|
|
|
-public void setOwnerId(String ownerId) {
|
|
|
+
|
|
|
+ public void setOwnerId(String ownerId) {
|
|
|
this.ownerId = ownerId;
|
|
|
}
|
|
|
-public String getStoreId() {
|
|
|
+
|
|
|
+ public String getStoreId() {
|
|
|
return storeId;
|
|
|
}
|
|
|
-public void setStoreId(String storeId) {
|
|
|
+
|
|
|
+ public void setStoreId(String storeId) {
|
|
|
this.storeId = storeId;
|
|
|
}
|
|
|
-public String getRoomId() {
|
|
|
+
|
|
|
+ public String getRoomId() {
|
|
|
return roomId;
|
|
|
}
|
|
|
-public void setRoomId(String roomId) {
|
|
|
+
|
|
|
+ public void setRoomId(String roomId) {
|
|
|
this.roomId = roomId;
|
|
|
}
|
|
|
-public String getRoomName() {
|
|
|
+
|
|
|
+ public String getRoomName() {
|
|
|
return roomName;
|
|
|
}
|
|
|
-public void setRoomName(String roomName) {
|
|
|
+
|
|
|
+ public void setRoomName(String roomName) {
|
|
|
this.roomName = roomName;
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
}
|