namespace iWareSql.DBModel
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("Advertisement")]
|
public partial class Advertisement
|
{
|
public int Id { get; set; }
|
|
[StringLength(512)]
|
public string ImgUrl { get; set; }
|
|
[StringLength(64)]
|
public string Title { get; set; }
|
|
[StringLength(256)]
|
public string Url { get; set; }
|
|
[StringLength(2000)]
|
public string Remark { get; set; }
|
|
public DateTime Createdate { get; set; }
|
}
|
}
|