namespace iWareSql.MyDbContext
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("SysNotice")]
|
public partial class SysNotice
|
{
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public long Id { get; set; }
|
|
[Required]
|
[StringLength(32)]
|
public string Title { get; set; }
|
|
[Required]
|
public string Content { get; set; }
|
|
public int Type { get; set; }
|
|
public long PublicUserId { get; set; }
|
|
[StringLength(32)]
|
public string PublicUserName { get; set; }
|
|
public long PublicOrgId { get; set; }
|
|
[StringLength(64)]
|
public string PublicOrgName { get; set; }
|
|
public DateTime? PublicTime { get; set; }
|
|
public DateTime? CancelTime { get; set; }
|
|
public int Status { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public DateTime? UpdateTime { get; set; }
|
|
public long? CreateUserId { get; set; }
|
|
[StringLength(64)]
|
public string CreateUserName { get; set; }
|
|
public long? UpdateUserId { get; set; }
|
|
[StringLength(64)]
|
public string UpdateUserName { get; set; }
|
|
public bool IsDelete { get; set; }
|
}
|
}
|