2025-07-10 21:24:26 +08:00
|
|
|
|
/*
|
|
|
|
|
* @Author: yubaolee <yubaolee@163.com> | ahfu~ <954478625@qq.com>
|
|
|
|
|
* @Description: 实体类
|
|
|
|
|
* Copyright (c) 2025 by yubaolee | ahfu~ , All Rights Reserved.
|
|
|
|
|
*/
|
2020-10-22 14:59:36 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using OpenAuth.Repository.Core;
|
|
|
|
|
|
2025-07-10 21:24:26 +08:00
|
|
|
|
namespace {Namespace}
|
2020-10-22 14:59:36 +08:00
|
|
|
|
{
|
|
|
|
|
{AttributeManager}
|
2021-04-01 23:10:04 +08:00
|
|
|
|
public class {ClassName} : {BaseEntityName}
|
2020-10-22 14:59:36 +08:00
|
|
|
|
{
|
|
|
|
|
public {ClassName}()
|
|
|
|
|
{
|
|
|
|
|
{Construction}
|
|
|
|
|
}
|
|
|
|
|
{AttributeList}
|
|
|
|
|
}
|
|
|
|
|
}
|