JXMovies/CMS/JXCMS.CMS.Movie/Entity/WebSiteEntity.cs

28 lines
708 B
C#
Raw Normal View History

2020-02-16 22:11:24 +08:00
using System;
using System.Collections.Generic;
2020-02-09 19:10:05 +08:00
using FreeSql;
2020-02-16 22:11:24 +08:00
using FreeSql.DataAnnotations;
2020-02-09 19:10:05 +08:00
namespace JXCMS.CMS.Movie.Entity
{
public class WebSiteEntity : BaseEntity<WebSiteEntity, int>
{
public string WebSiteName { get; set; }
public string ApiUrl { get; set; }
public string Cron { get; set; } = "0 0 * * * ?";
2020-02-09 22:43:16 +08:00
public bool IsEnable { get; set; } = true;
2020-02-16 22:11:24 +08:00
public string LatestMovieNote { get; set; }
public DateTime LatestMoveTime { get; set; }
[Navigate("Id")]
public List<ClassifyEntity> WebSiteClassifyEntities { get; set; }
[Column(IsIgnore = true)]
public string NextRunTime { get; set; }
2020-02-09 19:10:05 +08:00
}
}