36 lines
987 B
C#
36 lines
987 B
C#
|
|
|||
|
using Ease.Core.Model;
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
public class RelationTable : BasicBaseObject
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
public RelationTable()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
public int RelationId { get; set; }
|
|||
|
public string RelationName { get; set; }
|
|||
|
public string MasterTableName { get; set; }
|
|||
|
public string MasterColumn1Name { get; set; }
|
|||
|
public string LinkTableName { get; set; }
|
|||
|
public string LinkColumn1Name { get; set; }
|
|||
|
public string JoinSql { get; set; }
|
|||
|
public string LinkColumn2Name { get; set; }
|
|||
|
public string LinkColumn3Name { get; set; }
|
|||
|
public string LinkColumn4Name { get; set; }
|
|||
|
public string MasterColumn2Name { get; set; }
|
|||
|
public string MasterColumn3Name { get; set; }
|
|||
|
public string MasterColumn4Name { get; set; }
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|