15 lines
323 B
C#
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; }
|
|
}
|
|
} |