Example #1
0
  public static Aula findById(Long id) {

    return find.byId(id);
  }
Example #2
0
 /** Gets a User by ID */
 public static UserModel getByPk(UUID pk) {
   return pk != null ? FINDER.byId(pk) : null;
 }
Example #3
0
 public static MappedWrapper findById(Long id) {
   return find.byId(id);
 }
Example #4
0
 public static Teacher getTeacher(Long id) {
   return finder.byId(id);
 }
Example #5
0
 public static Post_thread getById(Long id) {
   return find.byId(id);
 }
Example #6
0
 public static Position findBusPosition(Long seqId) {
   return find.byId(seqId);
 }
Example #7
0
 public static PullRequest findById(long id) {
   return finder.byId(id);
 }
Example #8
0
 public static String findLoginIdById(long id) {
   return find.byId(id).loginId;
 }
Example #9
0
 public static String findNameById(long id) {
   return find.byId(id).name;
 }
Example #10
0
 public static User findById(Long id) {
   return find.byId(id);
 }
Example #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);
 }