This commit is contained in:
gaofei
2021-08-13 11:15:59 +08:00
parent 43acc57060
commit d8dff88c39
320 changed files with 37219 additions and 4678 deletions
@@ -19,6 +19,20 @@ namespace FineUIPro.Web
}
}
protected string One
{
get
{
var views = (from x in Funs.DB.View_JDGL_ProgressCompletion where x.ProjectId == this.CurrUser.LoginProjectId orderby x.Months descending select x).ToList();
double result = 0;
if (views.Count > 0)
{
result = Convert.ToDouble(views[0].TotalRealNum);
}
return JsonConvert.SerializeObject(result);
}
}
#region 线
protected string Two
{