All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ajaxjs.cms.user.UserDao Maven / Gradle / Ivy

The newest version!
package com.ajaxjs.cms.user;

import com.ajaxjs.framework.IBaseDao;
import com.ajaxjs.framework.PageResult;
import com.ajaxjs.orm.annotation.Select;
import com.ajaxjs.orm.annotation.TableName;

@TableName(value = "user", beanClass = User.class)
public interface UserDao extends IBaseDao {
	@Select("SELECT id, avatar, name, username, sex, birthday, email, phone, createDate, location, " + selectCover + " AS cover FROM ${tableName} entry")
	@Override
	public PageResult findPagedList_Cover(int start, int limit);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy