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.
73 lines
1.7 KiB
73 lines
1.7 KiB
2 years ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using Znyc.Recruitment.Admin.Commons.Entitys;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Security.Entitys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 活动表
|
||
|
/// </summary>
|
||
|
[Table("rm_activity")]
|
||
|
public class ActivityEntity : BaseEntity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 活动类型Id
|
||
|
/// </summary>
|
||
|
public long ActivityId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 活动图标
|
||
|
/// </summary>
|
||
|
public string Icon { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 文字描述
|
||
|
/// </summary>
|
||
|
public string TextDesc { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 跳转页面
|
||
|
/// </summary>
|
||
|
public string PageUrl { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 图片描述
|
||
|
/// </summary>
|
||
|
public string PicDesc { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 图片URL
|
||
|
/// </summary>
|
||
|
public string PicUrl { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 点击图片跳转页面路径
|
||
|
/// </summary>
|
||
|
public string PicPageUrl { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 活动详情图
|
||
|
/// </summary>
|
||
|
public string DetailPicUrl { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 开始时间
|
||
|
/// </summary>
|
||
|
public DateTime StartTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 结束时间
|
||
|
/// </summary>
|
||
|
public DateTime EndTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态0未开始/1进行中/2已结束
|
||
|
/// </summary>
|
||
|
public int Status { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序
|
||
|
/// </summary>
|
||
|
public int Sort { get; set; }
|
||
|
}
|
||
|
}
|