using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace BookingJieFeng.DB.Model { [Table("OP_ATTACH")] public class OP_ATTACH { [Key] public string GID { get; set; } public string TITLE { get; set; } public string RELATIVEID { get; set; } public string FILETYPE { get; set; } public string FILEPATH { get; set; } public DateTime OP_TIME { get; set; } public string OP_USER { get; set; } } }