|
|
|
@ -2,7 +2,6 @@ package cn.estsh.i3plus.pojo.aps.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.annotation.ExcludeImportExport;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.annotation.FieldAnnotation;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BaseAPS;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BaseCode;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BeanRelation;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.holders.EBaseOrder;
|
|
|
|
@ -15,7 +14,6 @@ import lombok.EqualsAndHashCode;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.MappedSuperclass;
|
|
|
|
|
import javax.validation.constraints.Min;
|
|
|
|
|
import javax.validation.constraints.NotEmpty;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
@ -105,14 +103,4 @@ public class BaseOrder extends BaseCode {
|
|
|
|
|
public List<WorkRelation> getPostRelations() {
|
|
|
|
|
return BeanRelation.list(this, EBaseOrder.PostRelations);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@JsonBackReference
|
|
|
|
|
public List<BaseOrder> getUpperOrders() {
|
|
|
|
|
return BeanRelation.list(this, EBaseOrder.UpperOrders);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@JsonBackReference
|
|
|
|
|
public List<BaseOrder> getLowerOrders() {
|
|
|
|
|
return BeanRelation.list(this, EBaseOrder.LowerOrders);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|