Package com.eatle.persistent.pojo.foundation.business

Examples of com.eatle.persistent.pojo.foundation.business.JoinInformation


  }

  @Override
  public JoinInformation findById(long id)
  {
    JoinInformation info = joinInformationMapper.selectByPrimaryKey(id);

    // 申请时间
    if(info.getSubTime() != null)
      info.setSubTimeStr(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(info.getSubTime()));
    // 审核状态
    info.setAuditStatusStr(auditStatusHtml.get("" + info.getAuditStatus()));
    // 审核时间
    if(info.getAuditTime() != null)
      info.setAuditTimeStr(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(info.getAuditTime()));
   
    return info;
  }
View Full Code Here

TOP

Related Classes of com.eatle.persistent.pojo.foundation.business.JoinInformation

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.