OperationNameDAC.cs 486 B

123456789101112131415161718192021
  1. #region
  2. #endregion
  3. using System;
  4. using CLIP.eForm.Consent.Entity;
  5. using CLIP.eForm.Server.Data;
  6. using System.Collections.Generic;
  7. using IBatisNet.DataMapper;
  8. using System.Collections;
  9. namespace CLIP.eForm.Consent.Dac
  10. {
  11. class OperationNameDAC : DacBase
  12. {
  13. public List<string> getOpNameList(ISqlMapper mapper, Hashtable args)
  14. {
  15. //return mapper.QueryForObject<OperationNameVO>("GET_OPERATION_NAME", args);
  16. return null;
  17. }
  18. }
  19. }