duhe
2025-04-25 16a061f9c284c607a0470f5c37a03652796c61d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using WebAPI.Controllers;
namespace LMES
{
    public partial class XiaoZhuGe_autoGetData : Form
    {
        public XiaoZhuGe_autoGetData()
        {
            InitializeComponent();
        }
 
        private void button1_Click(object sender, EventArgs e)
        {
            XZG_DataSynchronizationController t = new XZG_DataSynchronizationController();
 
            //t.getAddMaterAsync_1();
 
            t.icmoInfoSyncFromERPToXZG();
        }
    }
}