| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using CoreFS.CA06;
- using Core.Mes.Client.Comm;
- using Core.Mes.Client.Comm.Control;
- using Infragistics.Win.UltraWinGrid;
- //能按月查询各部门员工考勤信息,先全部默认为上班状态
- namespace Core.StlMes.Client.Lims.Resource
- {
- public partial class FrmEmployeeRecord : FrmBase
- {
- public FrmEmployeeRecord()
- {
- InitializeComponent();
- }
- private void FrmEmployeeRecord_Load(object sender, EventArgs e)
- {
- //
- }
- public override void ToolBar_Click(object sender, string ToolbarKey)
- {
- }
- }
- }
|