ibms-dome/Backend/Models/OperatorLog.cs

18 lines
447 B
C#
Raw Normal View History

2022-10-14 16:08:54 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Backend.Models
2022-10-14 16:08:54 +08:00
{
public class OperatorLog
{
public int id { get; set; }
public string controller_name { get; set; }
public string action_name { get; set; }
public string parameter { get; set; }
public string created_by { get; set; }
public string created_at { get; set; }
}
}