using System; using System.Collections.Generic; namespace SupplierManager.Models; public partial class WyLog { /// /// 主键 /// public int Id { get; set; } /// /// 传入参数 /// public string? Introduced { get; set; } /// /// 返回值 /// public string? ReturnValue { get; set; } /// /// ip地址 /// public string? Ip { get; set; } /// /// 操作类型 /// public string? Operation { get; set; } /// /// 创建时间 /// public long? CreationTime { get; set; } }