2025-03-28 09:49:56 +08:00

38 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Data;
using System.Linq;
using System.Web.UI;
using System.Web.UI.WebControls;
using SuperMap.RealEstate.CoreFrameWork;
using SuperMap.RealEstate.ServiceModel;
using SuperMap.RealEstate.Utility;
using SuperMap.RealEstate.Web.UI;
using SuperMap.RealEstate.Web.UI.WebControls;
using SuperMap.RealEstate.Web.Utility;
namespace SuperMap.RealEstate.Contract.Storage
{
/// <summary>
/// T_BUSINESSPAYMENT_经营商户经营项目执行情况表 的WebUserControl
/// <summary>
public partial class BUSINESSPAYMENT : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
//载入数据
public bool LoadData()
{
////如果是工作流组件请自行修改载入的逻辑,以下是功能模块的默认代码
//if (!String.IsNullOrEmpty(Request["ID"]))
//{
// CurrObject.BUSINESSPAYMENT_ID_Encrypt = Request["ID"];
// return this.Select();
//}
//默认返回值工作流组件返回True,功能模块返回False。
return true;
}
}
}