25 lines
430 B
C#
25 lines
430 B
C#
using ExternalDataSync;
|
|
using MesWork;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Data;
|
|
using System.Data.SqlClient;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public enum From_Opera
|
|
{
|
|
/// <summary>
|
|
/// 增加
|
|
/// </summary>
|
|
Insert = 1,
|
|
/// <summary>
|
|
/// 修改
|
|
/// </summary>
|
|
Update = 2
|
|
} |