ChouBox/ChouBox.Model/Entities/NotifyLog.cs
2025-04-23 19:20:23 +08:00

16 lines
280 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class NotifyLog
{
public int Id { get; set; }
public string OrderNo { get; set; } = null!;
public int Addtime { get; set; }
public string? Xml { get; set; }
}