16 lines
516 B
C#
16 lines
516 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Service.MeterProcessState.Data
|
|
{
|
|
public partial class FileMapToCluster : Ui.Web.IMeterDataCenter.Data.BaseEntity
|
|
{
|
|
public Int32 FileMapToClusterId { get; set; }
|
|
public Int32 FileMapToClusterFileId { get; set; }
|
|
public Int32 FileMapToClusterFileClusterId { get; set; }
|
|
|
|
public virtual File FileMapToClusterFile { get; set; }
|
|
public virtual FileClusterStore FileMapToClusterFileCluster { get; set; }
|
|
}
|
|
}
|