JXMovies/CMS/JXCMS.CMS.Movie/Entity/WebSiteEntity.cs
2020-02-16 22:11:24 +08:00

28 lines
708 B
C#

using System;
using System.Collections.Generic;
using FreeSql;
using FreeSql.DataAnnotations;
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 * * * ?";
public bool IsEnable { get; set; } = true;
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; }
}
}