using FreeSql; using FreeSql.DataAnnotations; namespace JXCMS.CMS.Movie.Entity { public class MovieActorEntity : BaseEntity { public int ActorId { get; set; } [Navigate("ActorId")] public ActorEntity ActorEntity { get; set; } public int MovieId { get; set; } [Navigate("MovieId")] public MovieEntity MovieEntity { get; set; } } }