This commit is contained in:
2021-04-30 10:28:37 +08:00
commit f901e87a6e
9029 changed files with 1810915 additions and 0 deletions
@@ -0,0 +1,34 @@
using System;
using System.Linq;
namespace FineUIPro.Web.HJGL.BaseInfo
{
public partial class PressureView : PageBase
{
#region
/// <summary>
/// 加载页面
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
string PressureId = Request.Params["PressureId"];
if (!string.IsNullOrEmpty(PressureId))
{
Model.Base_Pressure getPressure = BLL.Base_PressureService.GetPressureByPressureId(PressureId);
if (getPressure != null)
{
this.txtPressureCode.Text = getPressure.PressureCode;
this.txtPressureName.Text = getPressure.PressureName;
this.txtRemark.Text = getPressure.Remark;
}
}
}
}
#endregion
}
}