|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.aps.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.annotation.FieldAnnotation;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BaseAPS;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.common.BeanRelation;
|
|
|
|
|
import cn.estsh.i3plus.pojo.aps.holders.EShippingTime;
|
|
|
|
@ -33,18 +34,22 @@ public class ShippingTime extends BaseAPS {
|
|
|
|
|
|
|
|
|
|
@Column(name="PREV_RES_CODE")
|
|
|
|
|
@ApiParam(value ="前资源对象Id")
|
|
|
|
|
@FieldAnnotation(property = false)
|
|
|
|
|
private Long prevResId;
|
|
|
|
|
|
|
|
|
|
@Column(name="POST_RES_CODE")
|
|
|
|
|
@ApiParam(value ="后资源对象Id")
|
|
|
|
|
@FieldAnnotation(property = false)
|
|
|
|
|
private Long postResId;
|
|
|
|
|
|
|
|
|
|
@Column(name="PREV_STAND_CODE")
|
|
|
|
|
@ApiParam(value ="前标准工序对象Id")
|
|
|
|
|
@FieldAnnotation(property = false)
|
|
|
|
|
private Long prevStandId;
|
|
|
|
|
|
|
|
|
|
@Column(name="POST_STAND_CODE")
|
|
|
|
|
@ApiParam(value ="后标准工序对象Id")
|
|
|
|
|
@FieldAnnotation(property = false)
|
|
|
|
|
private Long postStandId;
|
|
|
|
|
|
|
|
|
|
public Resource getPrevRes() {return BeanRelation.get(this, EShippingTime.PrevRes); }
|
|
|
|
|