This commit is contained in:
jl
2024-11-22 15:31:46 +08:00
parent 7f5e4fcc3f
commit 48afa11af7
25 changed files with 1178 additions and 1183 deletions

View File

@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class Sys_operate_logModel : Base
{
private int _id = 0;
private string _title = string.Empty;
private string _method = string.Empty;
private string _operate_url = string.Empty;
private string _operate_param = string.Empty;
private string _json_result = string.Empty;
private int _status = 0;
private string _error_msg = string.Empty;
private Nullable<DateTime> _addtime;
private Nullable<DateTime> _endtime;
public int id { get => _id; set => _id = value; }
public string title { get => _title; set => _title = value; }
public string method { get => _method; set => _method = value; }
public string operate_url { get => _operate_url; set => _operate_url = value; }
public string operate_param { get => _operate_param; set => _operate_param = value; }
public string json_result { get => _json_result; set => _json_result = value; }
public int status { get => _status; set => _status = value; }
public string error_msg { get => _error_msg; set => _error_msg = value; }
public DateTime? addtime { get => _addtime; set => _addtime = value; }
public DateTime? endtime { get => _endtime; set => _endtime = value; }
}
}