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 { /// /// ͳ¼Æ±¨±í /// public class IndexModel : BaseModel { public string defaulttime = ""; public void OnGet() { defaulttime = $"{DateTime.Now.Date} ~ {DateTime.Now.Date.AddDays(1).AddSeconds(-1)}"; } } }