2025-03-27 15:05:14 +08:00

21 lines
516 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace SuperMap.RealEstate.Contract.Modules.ContractProinst
{
public partial class ATTACHMENTPage : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
Common.PageHelper.CreateHeaderStyle(this);
if (IsPostBack) return;
//加载审批表数据
ATTACHMENT.LoadData();
}
}
}