FrmEmployeeRecord.cs 795 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using CoreFS.CA06;
  10. using Core.Mes.Client.Comm;
  11. using Core.Mes.Client.Comm.Control;
  12. using Infragistics.Win.UltraWinGrid;
  13. //能按月查询各部门员工考勤信息,先全部默认为上班状态
  14. namespace Core.StlMes.Client.Lims.Resource
  15. {
  16. public partial class FrmEmployeeRecord : FrmBase
  17. {
  18. public FrmEmployeeRecord()
  19. {
  20. InitializeComponent();
  21. }
  22. private void FrmEmployeeRecord_Load(object sender, EventArgs e)
  23. {
  24. //
  25. }
  26. public override void ToolBar_Click(object sender, string ToolbarKey)
  27. {
  28. }
  29. }
  30. }