16 lines
544 B
C#
16 lines
544 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Service.MeterProcessState.Data
|
|
{
|
|
public partial class CordonelCurrentFw : Ui.Web.IMeterDataCenter.Data.BaseEntity
|
|
{
|
|
public int CordonelCurrentFwId { get; set; }
|
|
public int CordonelCurrentFwFrequency { get; set; }
|
|
public int CordonelCurrentFwAppId { get; set; }
|
|
public int? CordonelCurrentFwVersion { get; set; }
|
|
public string CordonelCurrentFwName { get; set; }
|
|
public DateTime? CordonelCurrentFwDeleted { get; set; }
|
|
}
|
|
}
|