SGGL_SHJ/SGGL/FineUIPro.Web/HJGL/InfoQuery/JointQueryChart.aspx.cs

60 lines
1.5 KiB
C#

using System;
namespace FineUIPro.Web.HJGL.InfoQuery
{
public partial class JointQueryChart : PageBase
{
public decimal JointComplete
{
get
{
return (decimal)ViewState["JointComplete"];
}
set
{
ViewState["JointComplete"] = value;
}
}
public decimal JointNoComplete
{
get
{
return (decimal)ViewState["JointNoComplete"];
}
set
{
ViewState["JointNoComplete"] = value;
}
}
public int JointPre
{
get
{
return (int)ViewState["JointPre"];
}
set
{
ViewState["JointPre"] = value;
}
}
public int JointNoPre
{
get
{
return (int)ViewState["JointNoPre"];
}
set
{
ViewState["JointNoPre"] = value;
}
}
protected void Page_Load(object sender, EventArgs e)
{
this.JointComplete = BLL.Funs.GetNewDecimalOrZero(Request.Params["JointComplete"]);
this.JointNoComplete = BLL.Funs.GetNewDecimalOrZero(Request.Params["JointNoComplete"]);
this.JointPre = BLL.Funs.GetNewIntOrZero(Request.Params["JointPre"]);
this.JointNoPre = BLL.Funs.GetNewIntOrZero(Request.Params["JointNoPre"]);
}
}
}