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