/*
   * (non-Javadoc)
   *
   * @see
   * com.jcin.cms.service.system.IUserService#selectByPrimaryKey(java.lang
   * .String)
   */
  @Override
  public User selectByPrimaryKey(String id) {
    super.selectByPrimaryKey(id);

    User article = userMapper.selectByPrimaryKey(id);
    return article;
  }