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