|
|
@@ -2,17 +2,12 @@ package com.uas.platform.b2b.mobile.model;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
-import java.util.Set;
|
|
|
|
|
|
-import javax.persistence.CascadeType;
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
-import javax.persistence.FetchType;
|
|
|
import javax.persistence.GeneratedValue;
|
|
|
import javax.persistence.GenerationType;
|
|
|
import javax.persistence.Id;
|
|
|
-import javax.persistence.OneToMany;
|
|
|
-import javax.persistence.OrderBy;
|
|
|
import javax.persistence.SequenceGenerator;
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
@@ -216,14 +211,6 @@ public class ClockSetCenter implements Serializable {
|
|
|
@Column(name = "clo_sucess")
|
|
|
private String success;
|
|
|
|
|
|
- /**
|
|
|
- * 公司位置
|
|
|
- */
|
|
|
- @OneToMany(mappedBy = "clockSetCenter", cascade = { CascadeType.REFRESH, CascadeType.PERSIST, CascadeType.REMOVE,
|
|
|
- CascadeType.MERGE }, fetch = FetchType.EAGER)
|
|
|
- @OrderBy("cla_id")
|
|
|
- private Set<ClockAddress> address;
|
|
|
-
|
|
|
/**
|
|
|
* 班次日期
|
|
|
*/
|
|
|
@@ -471,14 +458,6 @@ public class ClockSetCenter implements Serializable {
|
|
|
this.success = success;
|
|
|
}
|
|
|
|
|
|
- public Set<ClockAddress> getAddress() {
|
|
|
- return address;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAddress(Set<ClockAddress> address) {
|
|
|
- this.address = address;
|
|
|
- }
|
|
|
-
|
|
|
public Date getDate() {
|
|
|
return date;
|
|
|
}
|