16 lines
280 B
C#
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; }
|
|
}
|