OpenAuth.Net/OpenAuth.WebApi/Template/BuildEntity.html
2025-07-10 21:24:26 +08:00

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}
}
}