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.
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|