mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-15 22:55:45 +08:00
22 lines
497 B
HTML
22 lines
497 B
HTML
/*
|
|
* @Author: yubaolee <yubaolee@163.com> | ahfu~ <954478625@qq.com>
|
|
* @Description: 实体类
|
|
* Copyright (c) 2025 by yubaolee | ahfu~ , All Rights Reserved.
|
|
*/
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using OpenAuth.Repository.Core;
|
|
|
|
namespace {Namespace}
|
|
{
|
|
{AttributeManager}
|
|
public class {ClassName} : {BaseEntityName}
|
|
{
|
|
public {ClassName}()
|
|
{
|
|
{Construction}
|
|
}
|
|
{AttributeList}
|
|
}
|
|
} |