|
using Common;
|
using Model;
|
using System;
|
using System.Web;
|
using System.Web.Profile;
|
using System.Web.SessionState;
|
|
public partial class _GwSpChargeLog : PageBase<SysUser>, IRequiresSessionState
|
{
|
public string sDate
|
{
|
get
|
{
|
string @string = this.AppContext.GetString("sDate");
|
if (string.IsNullOrEmpty(@string))
|
return DateTime.Now.AddDays(-1.0).ToString("yyyy-MM-dd");
|
return @string;
|
}
|
}
|
|
public string eDate
|
{
|
get
|
{
|
string @string = this.AppContext.GetString("eDate");
|
if (string.IsNullOrEmpty(@string))
|
return DateTime.Now.ToString("yyyy-MM-dd");
|
return @string;
|
}
|
}
|
|
protected void Page_Load(object sender, EventArgs e)
|
{
|
this.CheckRight("3022", FailedOperation.ErrorMsgOnly);
|
}
|
}
|