15 lines
280 B
C#
15 lines
280 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||
|
|
|
||
|
|
namespace YBDevice.NWeb.Pages.MiniProgram
|
||
|
|
{
|
||
|
|
public class TplModel : BaseModel
|
||
|
|
{
|
||
|
|
public int mid = 0;
|
||
|
|
public void OnGet(int id = 0)
|
||
|
|
{
|
||
|
|
mid = id;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|