You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
832 B
C#
27 lines
832 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace DSWeb.Areas.SoftMng.DB
|
|
{
|
|
[Table("FeedbackMessage")]
|
|
public class FeedbackMessage
|
|
{
|
|
public const string FeedbackMessageTypeAccept = "Accept";
|
|
public const string FeedbackMessageTypeProcess = "Process";
|
|
public const string FeedbackMessageTypeFinish = "Finish";
|
|
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; set; }
|
|
public string Type { get; set; }
|
|
public string FeedbackId { get; set; }
|
|
public string Title { get; set; }
|
|
public string Body { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
} |