JXMovies/CMS/JXCMS.CMS.Movie/Entity/ActorEntity.cs
2020-02-16 22:11:24 +08:00

14 lines
358 B
C#

using System.Collections.Generic;
using FreeSql;
using FreeSql.DataAnnotations;
namespace JXCMS.CMS.Movie.Entity
{
public class ActorEntity : BaseEntity<ActorEntity, int>
{
public string ActorName { get; set; }
[Navigate(ManyToMany = typeof(MovieActorEntity))]
public List<MovieEntity> MovieEntities { get; set; }
}
}