53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
using System;
|
|
|
|
namespace Xylem.ServiceFwUpdate.Common.FwUpdateDb
|
|
{
|
|
/// <summary>
|
|
/// FW-Update report container for exchange with DB
|
|
/// </summary>
|
|
[Serializable]
|
|
public class FwUpdateReportDb
|
|
{
|
|
/// <summary>
|
|
/// Auto generated file id during upload
|
|
/// </summary>
|
|
public Int32 FileId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Name of FW-Update report with the pcb ID, FW-Update order number and customer name
|
|
/// (e.g. 182100041_ThamesWater_1234567890.report)
|
|
/// </summary>
|
|
public String FileName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Pcb ID
|
|
/// </summary>
|
|
public Int64 PcbId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Assigned user ID
|
|
/// </summary>
|
|
public Int32 UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// FW-Update order number
|
|
/// </summary>
|
|
public Int64 OrderNr { get; set; }
|
|
|
|
/// <summary>
|
|
/// FW-Update order position of Cordonels
|
|
/// </summary>
|
|
public Int64 OrderPos { get; set; }
|
|
|
|
/// <summary>
|
|
/// Text content
|
|
/// </summary>
|
|
public String Content { get; set; }
|
|
|
|
/// <summary>
|
|
/// Auto generated time during upload
|
|
/// </summary>
|
|
public DateTimeOffset Date { get; set; }
|
|
}
|
|
}
|