zoukankan      html  css  js  c++  java
  • 控制七

    namespace 考勤项目.Controllers { public class clockingController : Controller { bllexam bll = new bllexam(); // GET: clocking [HttpPost] public int add(exam model) { return bll.add(model); } public ActionResult Index() { return View(); } //mvc接收显示方法 // JsonResult n = Json(bll.select().ToList(), JsonRequestBehavior.AllowGet); const int pageindex = 3; [HttpGet] public JsonResult getselect( string begintime, string endtime ,int page = 1) { //JsonResult n = Json(bll.select().ToList(), JsonRequestBehavior.AllowGet); List n = bll.select(); if (!string.IsNullOrWhiteSpace(begintime)) { var t = n.Where(m => m.begintime.Contains(begintime)).ToList(); } if (!string.IsNullOrWhiteSpace(endtime)) { var t = n.Where(m => m.begintime.Contains(endtime)).ToList(); } Page p = new Page(); p.pages = page; p.pagecount = (n.Count / pageindex) + (n.Count % pageindex == 0 ? 0 : 1); p.data = n.Skip((page - 1) * pageindex).Take(pageindex).ToList(); return Json(p, JsonRequestBehavior.AllowGet); } public ActionResult Show() { return View(); } public ActionResult manage() { return View(); } [HttpPost] public int SignIn(string time1) { string times = ConfigurationManager.AppSettings["Up"].ToString(); if (DateTime.Parse(time1) > DateTime.Parse(times)) { return 0; } else { return 1; } } [HttpPost] public int SignOut(string time2) { string times = ConfigurationManager.AppSettings["Down"].ToString(); if (DateTime.Parse(time2) < DateTime.Parse(times)) { return 0; } else { return 1; } } } }
  • 相关阅读:
    设计模式(十)——模板方法模式
    用imageROI来增加某范围的像素
    OpenCv练习
    字符串格式化(七)-format
    列表初始化
    设计模式(九)——适配器模式
    右值引用&&
    设计模式(八)——外观模式
    Confluence 6 企业环境或者网站托管的 Java 配置策略
    Confluence 6 管理应用服务器内存设置
  • 原文地址:https://www.cnblogs.com/zongmf/p/10003256.html
Copyright © 2011-2022 走看看