派纳发送邮件功能
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.

71 lines
1.9 KiB

5 months ago
  1. /**************************************************************
  2. * Description:
  3. * CustPrintReferenceRefAction.cs
  4. * Product: U9
  5. * Co. : UFIDA Group
  6. * Author : Auto Generated
  7. * version: 2.0
  8. **************************************************************/
  9. using System;
  10. using System.Collections;
  11. using System.Collections.Generic;
  12. using System.Text;
  13. using UFSoft.UBF.Util.Log;
  14. using UFSoft.UBF.UI.MD.Runtime;
  15. using UFSoft.UBF.UI.ActionProcess;
  16. using UFSoft.UBF.UI.IView;
  17. using System.Data;
  18. namespace CustPrintReferenceRef
  19. {
  20. public partial class CustPrintReferenceRefAction : BaseAction
  21. {
  22. private static readonly ILogger logger = LoggerManager.GetLogger(typeof(CustPrintReferenceRefAction));
  23. //强类型化基类Model属性.
  24. public new CustPrintReferenceRefModel CurrentModel
  25. {
  26. get {
  27. return (CustPrintReferenceRefModel)base.CurrentModel;
  28. }
  29. set {
  30. base.CurrentModel = value ;
  31. }
  32. }
  33. public CustPrintReferenceRefAction(IPart part) : base(part)
  34. {
  35. }
  36. //Model参数的构造,用于测试用例.
  37. public CustPrintReferenceRefAction(CustPrintReferenceRefModel model) : base(model)
  38. {
  39. }
  40. #region Action的内置两个Action.
  41. /// <summary>
  42. /// Help: 数据加载(发生在Form的初始化加载时)
  43. /// </summary>
  44. public void OnLoadData(object sender, UIActionEventArgs e)
  45. {
  46. //UBF扩展处...
  47. this.OnLoadData_Extend(sender,e) ;
  48. }
  49. private void OnLoadData_DefaultImpl(object sender, UIActionEventArgs e)
  50. {
  51. UFIDA.U9.UI.Commands.CommandFactory.DoCommand("DataLoad",this,sender,e);
  52. }
  53. /// <summary>
  54. /// Help: 数据收集(发生在Form的CallBack或者是PostBack时)
  55. /// </summary>
  56. public void OnDataCollect(object sender, UIActionEventArgs e)
  57. {
  58. //UBF扩展处...
  59. this.OnDataCollect_Extend(sender,e) ;
  60. }
  61. private void OnDataCollect_DefaultImpl(object sender, UIActionEventArgs e)
  62. {
  63. UFIDA.U9.UI.Commands.CommandFactory.DoCommand("DataCollect",this,sender,e);
  64. }
  65. #endregion
  66. }
  67. }