Examples of JeecgNoteEntity


Examples of org.jeecgframework.web.demo.entity.test.JeecgNoteEntity

   * 修复表单模型
   *@Author JueYue
   *@date   2013-11-12
   */
  private void repairJeecgNoteEntity() {
    JeecgNoteEntity entity = new JeecgNoteEntity();
    entity.setAge(10);
    entity.setBirthday(new Date());
    entity.setCreatedt(new Date());
    entity.setName("小红");
    entity.setSalary(new BigDecimal(1000));
    commonDao.save(entity);
  }
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.