22 lines
508 B
C#
22 lines
508 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace Waste.Web.Entry.Pages.Result
|
|
{
|
|
/// <summary>
|
|
/// ͳ¼Æ±¨±í
|
|
/// </summary>
|
|
public class IndexModel : BaseModel
|
|
{
|
|
public string defaulttime = "";
|
|
public void OnGet()
|
|
{
|
|
defaulttime = $"{DateTime.Now.Date} ~ {DateTime.Now.Date.AddDays(1).AddSeconds(-1)}";
|
|
}
|
|
}
|
|
}
|