20 lines
400 B
C#
20 lines
400 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace SupplierManager.Models;
|
|||
|
|
|
|||
|
|
public partial class AasProjectReportReady
|
|||
|
|
{
|
|||
|
|
public long Id { get; set; }
|
|||
|
|
|
|||
|
|
public string? ProjectCode { get; set; }
|
|||
|
|
|
|||
|
|
public string? CustomerContactsH { get; set; }
|
|||
|
|
|
|||
|
|
public DateTime? Createtime { get; set; }
|
|||
|
|
|
|||
|
|
public DateTime? Updatetime { get; set; }
|
|||
|
|
|
|||
|
|
public long? Unixtime { get; set; }
|
|||
|
|
}
|