Ejemplo n.º 1
0
  public static Aula findById(Long id) {

    return find.byId(id);
  }
Ejemplo n.º 2
0
 /** Gets a User by ID */
 public static UserModel getByPk(UUID pk) {
   return pk != null ? FINDER.byId(pk) : null;
 }
Ejemplo n.º 3
0
 public static MappedWrapper findById(Long id) {
   return find.byId(id);
 }
Ejemplo n.º 4
0
 public static Teacher getTeacher(Long id) {
   return finder.byId(id);
 }
Ejemplo n.º 5
0
 public static Post_thread getById(Long id) {
   return find.byId(id);
 }
Ejemplo n.º 6
0
 public static Position findBusPosition(Long seqId) {
   return find.byId(seqId);
 }
Ejemplo n.º 7
0
 public static PullRequest findById(long id) {
   return finder.byId(id);
 }
Ejemplo n.º 8
0
 public static String findLoginIdById(long id) {
   return find.byId(id).loginId;
 }
Ejemplo n.º 9
0
 public static String findNameById(long id) {
   return find.byId(id).name;
 }
Ejemplo n.º 10
0
 public static User findById(Long id) {
   return find.byId(id);
 }
Ejemplo n.º 11
0
 /**
  * 根据主键查询数据
  *
  * @param userid
  * @return56
  */
 public static Tuniqueurl findDataById(String url) {
   Tuniqueurl uniqueurl = find.byId(url);
   return uniqueurl;
 }
 public static Event findById(Long id) {
   return find.byId(id);
 }