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

15 lines
331 B
C#
Raw Normal View History

2020-02-09 19:10:05 +08:00
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 * * * ?";
2020-02-09 22:43:16 +08:00
public bool IsEnable { get; set; } = true;
2020-02-09 19:10:05 +08:00
}
}