com.wizzdi.flexicore.contract.model.ContractItemChargeReference Maven / Gradle / Ivy
package com.wizzdi.flexicore.contract.model;
import com.wizzdi.flexicore.billing.model.billing.ChargeReference;
import jakarta.persistence.Entity;
import jakarta.persistence.ManyToOne;
@Entity
public class ContractItemChargeReference extends ChargeReference {
@ManyToOne(targetEntity = ContractItem.class)
private ContractItem contractItem;
@ManyToOne(targetEntity = ContractItem.class)
public ContractItem getContractItem() {
return contractItem;
}
public T setContractItem(ContractItem contractItem) {
this.contractItem = contractItem;
return (T) this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy