using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Text; namespace CZFW.Framework { public class ApiControllerBase:ControllerBase { public string SiteId { get; set; } = "0"; } }