JXMovies/CMS/JXCMS.CMS.Movie/Entity/WebSiteEntity.cs
2020-02-09 19:10:05 +08:00

15 lines
323 B
C#

using FreeSql;
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; }
}
}