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;
|
2021-02-19 10:43:23 +01:00
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-02-19 10:43:23 +01:00
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|