You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
772 B
C#
33 lines
772 B
C#
using Sln.Iot.Repository;
|
|
using SlnMesnac.Model.domain;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.Repository.service.Impl
|
|
{
|
|
public class MesOrderInfoImpl
|
|
{
|
|
private static readonly Lazy<MesOrderInfoImpl> lazy = new Lazy<MesOrderInfoImpl>(() => new MesOrderInfoImpl());
|
|
|
|
public static MesOrderInfoImpl Instance
|
|
{
|
|
get
|
|
{
|
|
return lazy.Value;
|
|
}
|
|
}
|
|
|
|
public SQLiteHelper<MesOrderInfo> _helper = new SQLiteHelper<MesOrderInfo>();
|
|
|
|
///// <summary>
|
|
///// 插入或者替换数据
|
|
///// </summary>
|
|
///// <returns></returns>
|
|
//public bool InsertOrReplaceMesData()
|
|
//{
|
|
|
|
//}
|
|
}
|
|
}
|