打印机共享后名称

  • 打印机共享后名称已关闭评论
  • A+
所属分类:远程维修
摘要

model.addAttribute(“printerShareName”,apps.getPrinterShareName());//打印机共享服务器model.addAttribute(“printerShareServer”,apps.getPrinterShare

model.addAttribute("printerShareName",
apps.getPrinterShareName());
// 打印机共享服务器
model.addAttribute("printerShareServer",
apps.getPrinterShareServer());
// 打印机共享目录
model.addAttribute("printerShareDir",
apps.getPrinterShareDir());
// 颜色
model.addAttribute("color", apps.getColor());
// 绲打
model.addAttribute("embroidery", apps.getEmbroidery());
// 注册机号
model.addAttribute("registryNum",
apps.getRegistryNum());
// 替换机号
model.addAttribute("replaceNum",
apps.getReplaceNum());
// 钱宝服务地址
model.addAttribute("qianbaoServiceAddress",
apps.getQianbaoServiceAddress());
// 钱宝UKey
model.addAttribute("qianbaoUkey",
apps.getQianbaoUkey());
// 钱宝UKey 授权码
model.addAttribute("qianbaoUkeyAuthorizationCode",
apps.getQianbaoUkeyAuthorizationCode());
// 钱宝UKey 是否更换
model.addAttribute("qianbaoUkeyReplace",
apps.getQianbaoUkeyReplace());
// 开通时间
model.addAttribute("openTime",
tools.date2Str(apps.getOpenTime()));
// 操作系统版本
model.addAttribute("osVersion",
apps.getOsVersion());
// 操作系统 额外软件
model.addAttribute("extraSoft",
apps.getExtraSoft());
// Office版本
model.addAttribute("officeVersion",
apps.getOfficeVersion());
// Office 额外软件
model.addAttribute("officeExtraSoft",
apps.getOfficeExtraSoft());
// 其他软件
model.addAttribute("otherSoft",
apps.getOtherSoft());
// 备注
model.addAttribute("note",
apps.getNote());
// 桌面封面
model.addAttribute("desktopCover",
apps.getDesktopCover());
// 常用快捷方式
model.addAttribute("frequentShortcut",
apps.getFrequentShortcut());
// 远程桌面端口号
model.addAttribute("remoteDesktopPort",
apps.getRemoteDesktopPort());
// 创建人
model.addAttribute("creator",
apps.getCreator().getName());
// 状态
model.addAttribute("status",
apps.getStatus());
}
return "system/application/detail";
}

/**
* enterConfirm 审核通过
*/
@RequestMapping("/enterConfirm.do")
public String enterConfirm(Integer[] appIds, Model model) {
// 日志
Log log = new Log("应用审核", "审核通过", "确认提交给管理员", this.request.getRemoteAddr());
logDao.save(log);
// 更新状态
appDao.updateStatus(appIds, 2);
return "redirect:/application/index.do";
}

/**
* enterRefuse 审核拒绝
*/
@RequestMapping("/enterRefuse.do")
public String enterRefuse(Integer[] appIds, Model model) {
// 日志
Log log = new Log("应用审核", "审核拒绝", "确认提交给管理员", this.request.getRemoteAddr());
logDao.save(log);
// 更新状态
appDao.updateStatus(appIds, 3);
return "redirect:/application/index.do";
}

/**
* pass 审核通过
*/
@RequestMapping("/pass.do")
public String pass(Integer[] appIds, Model model) {
// 日志
Log log = new Log("应用审核", "审核通过", "审核通过", this.request.getRemoteAddr());
logDao.save(log);
// 更新状态
appDao.updateStatus(appIds, 4);
return "redirect:/application/index.do";
}

/**
* refuse 审核拒绝
*/
@RequestMapping("/refuse.do")
public String refuse(Integer[] appIds, Model model) {
// 日志
Log log = new Log("应用审核", "审核拒绝",

  • 微信在线客服
  • 这是我的微信扫一扫
  • weinxin
  • 我的微信公众号
  • 扫一扫码上服务
  • weinxin