using FreeSql; namespace JXCMS.CMS.Movie.Entity { public class WebSiteEntity : BaseEntity { public string WebSiteName { get; set; } public string ApiUrl { get; set; } public string Cron { get; set; } = "0 0 * * * ?"; public bool IsEnable { get; set; } = true; } }