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

27 lines
662 B

5 months ago
  1. #region Using directives
  2. using System;
  3. using System.Collections;
  4. using System.Data;
  5. using UFSoft.UBF.UI.MD.Runtime;
  6. using UFSoft.UBF.UI.MD.Runtime.Implement;
  7. #endregion
  8. namespace CustPrintReferenceRef
  9. { public partial class CustPrintReferenceRefModel
  10. {
  11. //初始化UIMODEL之后的方法
  12. public override void AfterInitModel()
  13. {
  14. //this.Views[0].Fields[0].DefaultValue = thsi.co
  15. }
  16. //UIModel提交保存之前的校验操作.
  17. public override void OnValidate()
  18. {
  19. base.OnValidate() ;
  20. OnValidate_DefualtImpl();
  21. //your coustom code ...
  22. }
  23. }
  24. }