CSharp-Single-EFCore/Bunny.Dao/Entity/System/Dept/DeptUsers.cs

12 lines
359 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace Bunny.Dao.Entity.System.Dept;
[Comment("部门和用户关系表")]
[Table("System_DeptUsers")]
public class DeptUsers : BaseEntity
{
[Comment("部门id")] public Guid DeptId { get; init; }
[Comment("用户id")] public Guid UserId { get; init; }
}