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

18 lines
419 B
C#
Raw Normal View History

2020-02-16 22:11:24 +08:00
using FreeSql;
using FreeSql.DataAnnotations;
namespace JXCMS.CMS.Movie.Entity
{
public class MovieActorEntity : BaseEntity<MovieActorEntity, int>
{
public int ActorId { get; set; }
[Navigate("ActorId")]
public ActorEntity ActorEntity { get; set; }
public int MovieId { get; set; }
[Navigate("MovieId")]
public MovieEntity MovieEntity { get; set; }
}
}