28 lines
608 B
C#
28 lines
608 B
C#
using HRM.BO.SearchTools;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace HRM.BO.SearchTools
|
|
{
|
|
public class QTColumn: BasicBaseObject
|
|
{
|
|
public QTColumn()
|
|
{
|
|
|
|
}
|
|
|
|
public int QueryToolID { get; set; }
|
|
public int ColumnID { get; set; }
|
|
public ColumnAlignmentEnum Alignment { get; set; }
|
|
public string Format { get; set; }
|
|
public string Aggregate { get; set; }
|
|
public string Caption { get; set; }
|
|
}
|
|
}
|
|
|
|
public interface IQTColumnService
|
|
{
|
|
public void SaveQTColumn(QTColumn item);
|
|
}
|