You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
799 B
31 lines
799 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Stone.WinBiz.BasicData;
|
|
using Stone.Entity;
|
|
using System.Windows.Forms;
|
|
using Stone.Common;
|
|
|
|
namespace Stone.WinBiz.BasicData
|
|
{
|
|
public class F_JIS_Log : F_Base
|
|
{
|
|
public F_JIS_Log()
|
|
{
|
|
this.type = "JISLog";
|
|
this.name = "文件解析日志";
|
|
this.entity = new Entity_t_JIS_Log();
|
|
this.dateWhere = "[StartTime]>='{0}' and [StartTime]<='{1}'";
|
|
}
|
|
|
|
public override void GetView(DataGridView dgv)
|
|
{
|
|
base.GetView(dgv);
|
|
|
|
dgv.Columns["StartTime"].DefaultCellStyle.Format = "yyyy-MM-dd HH:mm:ss";
|
|
dgv.Columns["EndTime"].DefaultCellStyle.Format = "HH:mm:ss";
|
|
|
|
}
|
|
}
|
|
}
|
|
|