LSFE/LSFE.Infrastructure/Entities/Departments.cs
2026-07-30 10:31:04 +08:00

21 lines
541 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Entities
{
[Table("Departments")]
public class Departments
{
[Key]
public int DepartmentId { get; set; }
public string? DepartmentCode { get; set; }
public string? DepartmentName { get; set; }
public bool IsActive { get; set; }
}
}