Files
StopShopping/StopShopping.EF/Models/OperateLog.cs
2026-03-25 14:55:34 +08:00

51 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
namespace StopShopping.EF.Models;
/// <summary>
/// 操作日志
/// </summary>
public partial class OperateLog
{
/// <summary>
/// 主键
/// </summary>
public int Id { get; set; }
/// <summary>
/// 操作类型c-创建u-修改d-删除
/// </summary>
public char OperateType { get; set; }
/// <summary>
/// 目标类型0-行政区划1-商品分类。。。
/// </summary>
public int TargetType { get; set; }
/// <summary>
/// 关联id目标表主键
/// </summary>
public int RelatedId { get; set; }
/// <summary>
/// 管理员id
/// </summary>
public int OperaterId { get; set; }
/// <summary>
/// 操作描述
/// </summary>
public string? Description { get; set; }
/// <summary>
/// 操作时间
/// </summary>
public DateTime OperateTime { get; set; }
/// <summary>
/// 入库时间
/// </summary>
public DateTime CreateTime { get; set; }
}