using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///订单申操作请
///
[SugarTable("EC_OrderDialogue")]
public partial class EC_OrderDialogue
{
public EC_OrderDialogue(){
}
///
/// Desc:主键
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public Guid Keyid {get;set;}
///
/// Desc:申请类型
/// Default:
/// Nullable:True
///
public int? DialogueTypeId {get;set;}
///
/// Desc:发起人编号
/// Default:
/// Nullable:True
///
public Guid? InitiatorId {get;set;}
///
/// Desc:发起人名称
/// Default:
/// Nullable:True
///
public string InitiatorName {get;set;}
///
/// Desc:接手人编号
/// Default:
/// Nullable:True
///
public Guid? ReceiverId {get;set;}
///
/// Desc:接手人名称
/// Default:
/// Nullable:True
///
public string ReceiverName {get;set;}
///
/// Desc:目标订单
/// Default:
/// Nullable:True
///
public int? TargetOrder {get;set;}
///
/// Desc:申请信息内容
/// Default:
/// Nullable:True
///
public string DialogueContent {get;set;}
///
/// Desc:创建时间
/// Default:
/// Nullable:True
///
public DateTime? SubmitTime {get;set;}
///
/// Desc:是否允许
/// Default:
/// Nullable:True
///
public bool? IsAllow {get;set;}
///
/// Desc:答复时间
/// Default:
/// Nullable:True
///
public DateTime? ReplyTime {get;set;}
///
/// Desc:是否已执行
/// Default:0
/// Nullable:True
///
public bool? IsExecuted {get;set;}
///
/// Desc:目标值
/// Default:
/// Nullable:True
///
public decimal? TargetValue {get;set;}
}
}