using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Comm.DBItem { /// /// 方法名 /// public class MethodName { /// /// 添加的存储过程 /// public const string Add="Add"; /// /// 删除的存储过程 /// public const string Delete = "Delete"; /// /// 更新的存储过程 /// public const string Update = "Update"; /// /// 查询的存储过程 /// public const string Query = "Query"; } }