Package com.jeecms.cms.entity.assist

Examples of com.jeecms.cms.entity.assist.CmsAcquisition


    getSession().save(bean);
    return bean;
  }

  public CmsAcquisition deleteById(Integer id) {
    CmsAcquisition entity = super.get(id);
    if (entity != null) {
      getSession().delete(entity);
    }
    return entity;
  }
View Full Code Here

TOP

Related Classes of com.jeecms.cms.entity.assist.CmsAcquisition

Copyright © 2018 www.massapicom. 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.