Files

16 lines
287 B
C#
Raw Permalink Normal View History

2025-12-17 10:20:16 +08:00
using System;
using System.Collections.Generic;
namespace DAL.PGModels;
public partial class Excelgenerater
{
public long Id { get; set; }
public string? StepInfo { get; set; }
public DateTime? CreateTime { get; set; }
public long? CreateTimeUnix { get; set; }
}