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

23 lines
516 B
C#
Executable File

using FreeSql;
namespace JXCMS.CMS.Movie.Entity
{
public class SpiderRuleEntity: BaseEntity<SpiderRuleEntity, int>
{
public string Name { get; set; }
public string Author { get; set; }
public string WebRule { get; set; }
public string DetailRule { get; set; }
public string ContentRule { get; set; }
public string BookNameRule { get; set; }
public string BookAuthorRule { get; set; }
public string BookCoverRule { get; set; }
}
}