UpdateDirecotryCondition.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace PTMedicalInsurance.Forms.BasicDatas
  11. {
  12. public partial class UpdateDirecotryCondition : Form
  13. {
  14. private string code;
  15. private string name;
  16. private string updateTime;
  17. private string currentPage;
  18. private string pageSize;
  19. private string insuAdmDvs;
  20. public string Code { get => code; set => code = tbCode.Text = value; }
  21. public string Name { get => name; set => name = tbName.Text = value; }
  22. public string UpdateTime { get => updateTime; set => updateTime = tbUpdateTime.Text = value; }
  23. public string CurrentPage { get => currentPage; set => currentPage = tbCurPage.Text = value; }
  24. public string PageSize { get => pageSize; set => pageSize = tbPageSize.Text = value; }
  25. public string InsuAdmDvs { get => insuAdmDvs; set => insuAdmDvs = tbCbd.Text = value; }
  26. public UpdateDirecotryCondition()
  27. {
  28. InitializeComponent();
  29. }
  30. private void btnOK_Click(object sender, EventArgs e)
  31. {
  32. DialogResult = DialogResult.OK;
  33. }
  34. private void btnCancel_Click(object sender, EventArgs e)
  35. {
  36. DialogResult = DialogResult.Cancel;
  37. }
  38. }
  39. }