招聘后台
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.
 
 

20 lines
553 B

using System;
namespace Znyc.Recruitment.Admin.Commons.Entitys
{
/// <summary>
/// 定义可过期性,包含生效时间和过期时间:给实体添加 生效时间BeginTime,过期时间EndTime 的属性
/// </summary>
public interface IExpirable
{
/// <summary>
/// 获取或设置 生效时间
/// </summary>
DateTime? BeginTime { get; set; }
/// <summary>
/// 获取或设置 过期时间
/// </summary>
DateTime? EndTime { get; set; }
}
}