You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
464 B
17 lines
464 B
package com.hai.model;
|
|
|
|
import com.hai.entity.OutRechargeOrder;
|
|
import com.hai.entity.OutRechargePrice;
|
|
|
|
public class OutRechargeOrderDetailModel extends OutRechargeOrder {
|
|
// 产品模型
|
|
private OutRechargePrice outRechargePrice;
|
|
|
|
public OutRechargePrice getOutRechargePrice() {
|
|
return outRechargePrice;
|
|
}
|
|
|
|
public void setOutRechargePrice(OutRechargePrice outRechargePrice) {
|
|
this.outRechargePrice = outRechargePrice;
|
|
}
|
|
}
|
|
|