11 lines
217 B
C#
11 lines
217 B
C#
|
using FreeSql;
|
|||
|
|
|||
|
namespace JXCMS.CMS.Movie.Entity
|
|||
|
{
|
|||
|
public class AdminEntity: BaseEntity<AdminEntity, int>
|
|||
|
{
|
|||
|
public string UserName { get; set; }
|
|||
|
|
|||
|
public string Password { get; set; }
|
|||
|
}
|
|||
|
}
|