15 lines
312 B
C#
15 lines
312 B
C#
|
|
using System;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
using JiShe.CollectBus.Common.Attributes;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus
|
|||
|
|
{
|
|||
|
|
public class CassandraBaseEntity<TKey>: ICassandraEntity<TKey>
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Id
|
|||
|
|
/// </summary>
|
|||
|
|
public TKey Id { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|