using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///
///
[SugarTable("Promotion_Picture")]
public partial class Promotion_Picture
{
public Promotion_Picture(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int Keyid {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public int Height {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public int Width {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public string FileId {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public DateTime LastUpdateTime {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public string Operator {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Remark {get;set;}
}
}