using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///行政物品分类
///
[SugarTable("OA_PropertyCate")]
public partial class OA_PropertyCate
{
public OA_PropertyCate(){
}
///
/// Desc:主键
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int Keyid {get;set;}
///
/// Desc:会员编号
/// Default:
/// Nullable:True
///
public Guid? MemberId {get;set;}
///
/// Desc:名称
/// Default:
/// Nullable:True
///
public string Name {get;set;}
///
/// Desc:状态
/// Default:
/// Nullable:True
///
public int? Status {get;set;}
///
/// Desc:最后修改时间
/// Default:
/// Nullable:True
///
public DateTime? LastUpdateTime {get;set;}
///
/// Desc:操作人
/// Default:
/// Nullable:True
///
public string Operator {get;set;}
///
/// Desc:备注
/// Default:
/// Nullable:True
///
public string Remark {get;set;}
}
}