net.nan21.dnet.module.bd.currency.ds.model.CurrencyLovDs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nan21.dnet.module.bd.presenter Show documentation
Show all versions of nan21.dnet.module.bd.presenter Show documentation
Base data module presentation layer.
The newest version!
/*
* DNet eBusiness Suite
* Copyright: 2010-2013 Nan21 Electronics SRL. All rights reserved.
* Use is subject to license terms.
*/
package net.nan21.dnet.module.bd.currency.ds.model;
import net.nan21.dnet.core.api.annotation.Ds;
import net.nan21.dnet.core.api.annotation.SortField;
import net.nan21.dnet.core.presenter.model.base.AbstractTypeWithCodeLov;
import net.nan21.dnet.module.bd.currency.domain.entity.Currency;
@Ds(entity = Currency.class, jpqlWhere = " e.active = true ", sort = {@SortField(field = CurrencyLovDs.f_code)})
public class CurrencyLovDs extends AbstractTypeWithCodeLov {
public CurrencyLovDs() {
super();
}
public CurrencyLovDs(Currency e) {
super(e);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy