package com.landy.gum.production.update;
|
|
import com.landy.framework.core.update.BaseUpdateCondition;
|
|
public class RefOrderProductEntrySetDeliverIdUpdateCondition extends BaseUpdateCondition {
|
|
private String deliverId;
|
private String reopIds;
|
|
public String getDeliverId() {
|
return deliverId;
|
}
|
|
public void setDeliverId(String deliverId) {
|
this.deliverId = deliverId;
|
}
|
|
public String getReopIds() {
|
return reopIds;
|
}
|
|
public void setReopIds(String reopIds) {
|
this.reopIds = reopIds;
|
}
|
|
}
|