54 lines
1.2 KiB
C#
54 lines
1.2 KiB
C#
|
|
using BS.Shared;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace BeWo.Data.Entities
|
|||
|
|
{
|
|||
|
|
public class ChatBewoMessageSync : BeWoEntityBase
|
|||
|
|
{
|
|||
|
|
public static string PropertyName_EmployeeOid = "EmployeeOid";
|
|||
|
|
|
|||
|
|
public static string PropertyName_MessageSyncText = "MessageSyncText";
|
|||
|
|
|
|||
|
|
private long? _EmployeeOid;
|
|||
|
|
|
|||
|
|
private string _MessageSyncText;
|
|||
|
|
|
|||
|
|
public ChatBewoMessageSync()
|
|||
|
|
{
|
|||
|
|
this._Tid = TableID.ChatBewoMessageSync;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public virtual string MessageSyncText
|
|||
|
|
{
|
|||
|
|
get
|
|||
|
|
{
|
|||
|
|
return this._MessageSyncText;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
set
|
|||
|
|
{
|
|||
|
|
if (this.AreDifferent(this._MessageSyncText, value))
|
|||
|
|
{
|
|||
|
|
this._MessageSyncText = value;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public virtual long? EmployeeOid
|
|||
|
|
{
|
|||
|
|
get
|
|||
|
|
{
|
|||
|
|
return _EmployeeOid;
|
|||
|
|
}
|
|||
|
|
set
|
|||
|
|
{
|
|||
|
|
if (AreDifferent(_EmployeeOid, value))
|
|||
|
|
{
|
|||
|
|
_EmployeeOid = value;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|