org.wing4j.orm.CrudMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wing4j-orm-api Show documentation
Show all versions of wing4j-orm-api Show documentation
This is the wing4j-orm member wing4j-orm-api
package org.wing4j.orm;
import org.wing4j.orm.count.CountMapper;
import org.wing4j.orm.delete.DeleteMapper;
import org.wing4j.orm.insert.InsertMapper;
import org.wing4j.orm.lock.LockMapper;
import org.wing4j.orm.select.SelectMapper;
import org.wing4j.orm.update.UpdateMapper;
/**
* Created by wing4j on 2016/12/18.
*/
public interface CrudMapperextends
CountMapper,
SelectMapper,
InsertMapper,
UpdateMapper,
DeleteMapper,
LockMapper
{
}