You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
615 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zzz.Services
{
/// <summary>
/// 通用主键 Input
/// </summary>
/// <typeparam name="Tkey"></typeparam>
public class KeyInputUpd<Tkey>
where Tkey : IEquatable<Tkey>
{
/// <summary>
/// ID
/// </summary>
public Tkey Id { get; set; }
/// <summary>
/// 更新时间 如果有值,会进行最后更新时间校验
/// </summary>
public virtual DateTime? UpdatedTime { get; set; }
}
}