update news & events

This commit is contained in:
2025-10-22 09:41:40 +07:00
parent 40cf6fe6f4
commit 8f81545293
348 changed files with 111475 additions and 623 deletions

View File

@ -0,0 +1,23 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace TWASys_App.DBModels
{
public class StorageServerHasLocalServer
{
[Column("idStorageServer")]
public int IdStorageServer { get; set; } = 0;
[Column("idLocalServer")]
public int IdLocalServer { get; set; } = 0;
[Column("createDate")]
public DateTime CreateDate { get; set; } = DateTime.UtcNow; // nên lưu UTC
[Column("modifyDate")]
public DateTime? ModifyDate { get; set; } = null; // nên lưu UTC
[Column("status")]
public int Status { get; set; } = 0;
}
}