using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;

#nullable disable

namespace Ropin.Inspection.Model.Entities
{
    public partial class TSYS_Message
    {
        [Key]
        public string C_ID { get; set; }
        public string C_LicenseCode { get; set; }
        public string C_Content { get; set; }
        public string C_DevStoreCode { get; set; }
        public string C_MsgTypeCode { get; set; }
        public string C_Subject { get; set; }
        public DateTime? D_MsgCreateOn { get; set; }
        public string C_GenerationCode { get; set; }
        public int? I_GenerationType { get; set; } = 1;
        public int? I_MsgStatus { get; set; } = 0;
        public string C_Remark { get; set; }
        public string C_CreateBy { get; set; }
        public string C_Creator { get; set; }
        public DateTime D_CreateOn { get; set; }
        public string C_LastUpdatedBy { get; set; }
        public string C_Modifier { get; set; }
        public DateTime? D_LastUpdatedOn { get; set; }
        public string C_Status { get; set; } = "1";
    }
}