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

12 lines
255 B

using System;
namespace Znyc.Recruitment.Admin.Commons.Entitys
{
/// <summary>
/// 所有数据库视图对应实体类必须继承此类
/// </summary>
[Serializable]
public abstract class BaseViewModel : IEntity
{
}
}