Examples of GiftRecord


Examples of com.lgx8.right.entities.GiftRecord

    this.getHibernateTemplate().update(fc);
   
    tc.setScore(ts+score);
    this.getHibernateTemplate().update(tc);
   
    GiftRecord gift = new GiftRecord();
    gift.setFrom(from);
    gift.setTo(to);
    gift.setScore(score);
    if(content != null || !"".equals(content))gift.setContent(content);
    gift.setGiftTime(new Date());
   
    MemberRecord record1 = new MemberRecord();
    record1.setRecordDate(new Date());
    record1.setRecorder(from);
    record1.setScore(score);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.