|
|
|
@ -43,9 +43,9 @@ public class House implements Serializable { |
|
|
|
|
//@Type(type="uuid-char")
|
|
|
|
|
@XmlAttribute(name = "AOGUID", required = true) |
|
|
|
|
//@Column(name = "aoguid")
|
|
|
|
|
@ManyToMany |
|
|
|
|
@JoinColumn(name = "aoguid") |
|
|
|
|
public UUID aoguid; |
|
|
|
|
@ManyToOne(targetEntity = Addrobj.class) |
|
|
|
|
@JoinColumn(name = "aoguid", referencedColumnName = "aoguid") |
|
|
|
|
public Addrobj aoguid; |
|
|
|
|
|
|
|
|
|
//@Type(type="uuid-char")
|
|
|
|
|
@XmlAttribute(name = "HOUSEGUID", required = true) |
|
|
|
@ -98,12 +98,12 @@ public class House implements Serializable { |
|
|
|
|
@XmlAttribute(name = "DIVTYPE", required = true) |
|
|
|
|
protected int divtype; |
|
|
|
|
|
|
|
|
|
public House aoguid(String aoguid) { |
|
|
|
|
/* public House aoguid(String aoguid) { |
|
|
|
|
this.aoguid = UUID.fromString(aoguid); |
|
|
|
|
return this; |
|
|
|
|
} |
|
|
|
|
}*/ |
|
|
|
|
|
|
|
|
|
public void setAoguid(UUID aoguid) { |
|
|
|
|
public void setAoguid(Addrobj aoguid) { |
|
|
|
|
this.aoguid = aoguid; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|