//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace EMIS.Entities
{
#pragma warning disable 1573
using System;
using System.Collections.Generic;
///
/// Sys_AnnouncementType
///
public partial class Sys_AnnouncementType
{
public Sys_AnnouncementType()
{
this.Sys_Announcement = new HashSet();
}
///
/// AnnouncementTypeID
///
public System.Guid AnnouncementTypeID { get; set; }
///
/// No
///
public string No { get; set; }
///
/// Name
///
public string Name { get; set; }
///
/// Description
///
public string Description { get; set; }
///
/// RecordStatus
///
public Nullable RecordStatus { get; set; }
///
/// CreateTime
///
public Nullable CreateTime { get; set; }
///
/// CreateUserID
///
public Nullable CreateUserID { get; set; }
///
/// ModifyUserID
///
public Nullable ModifyUserID { get; set; }
///
/// ModifyTime
///
public Nullable ModifyTime { get; set; }
///
/// Sys_Announcement
///
public virtual HashSet Sys_Announcement { get; set; }
}
}