Files
BeWoPlaner/Data/Entities/FlexibleReportLayout.cs

83 lines
1.8 KiB
C#
Raw Permalink Normal View History

2019-07-15 09:45:38 +02:00
using BS.Shared;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Data.Entities
{
public class FlexibleReportLayout : BeWoEntityBase
{
private long _CreatorOid;
private bool _VisibleForAllEmployee;
2019-07-15 09:45:38 +02:00
private string _LayoutName;
private string _LayoutString;
public FlexibleReportLayout()
{
_Tid = TableID.FlexibleReportLayout;
}
public virtual long CreatorOid
{
get
{
return _CreatorOid;
}
set
{
if (AreDifferent(_CreatorOid, value))
{
_CreatorOid = value;
}
}
}
public virtual bool VisibleForAllEmployee
{
get
{
return _VisibleForAllEmployee;
}
set
{
if (AreDifferent(_VisibleForAllEmployee, value))
{
_VisibleForAllEmployee = value;
}
}
}
2019-07-15 09:45:38 +02:00
public virtual string LayoutName
{
get
{
return _LayoutName;
}
set
{
if (AreDifferent(_LayoutName, value))
{
_LayoutName = value;
}
}
}
public virtual string LayoutString
{
get
{
return _LayoutString;
}
set
{
if (AreDifferent(_LayoutString, value))
{
_LayoutString = value;
}
}
}
}
}