14 lines
358 B
C#
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; }
|
|||
|
}
|
|||
|
}
|