初始化
This commit is contained in:
37
SupplierManager/Models/WyLog.cs
Normal file
37
SupplierManager/Models/WyLog.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SupplierManager.Models;
|
||||
|
||||
public partial class WyLog
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 传入参数
|
||||
/// </summary>
|
||||
public string? Introduced { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 返回值
|
||||
/// </summary>
|
||||
public string? ReturnValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ip地址
|
||||
/// </summary>
|
||||
public string? Ip { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 操作类型
|
||||
/// </summary>
|
||||
public string? Operation { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public long? CreationTime { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user