12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Winsoft.GOV.Framework.Model;
- using Dapper;
- namespace Winsoft.GOV.Framework.Provider
- {
- public class QYBranchProvider : BranchProvider
- {
- private static QYBranchProvider instance;
- public static QYBranchProvider Instance
- {
- get
- {
- CreateInstance(ref instance);
- return instance;
- }
- }
- public QYBranchProvider() : base(County.QY)
- {
- }
- }
- }
|