11 lines
214 B
C#
11 lines
214 B
C#
|
using FreeSql;
|
||
|
|
||
|
namespace JXCMS.CMS.Movie.Entity
|
||
|
{
|
||
|
public class ClassifyEntity : BaseEntity<ClassifyEntity, int>
|
||
|
{
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
public int ParentId { get; set; }
|
||
|
}
|
||
|
}
|