1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace WIDESEAWCS_Tasks.ConveyorLineJob
| {
| public class DBLine
| {
| public static List<string> ListDBdata = new List<string>() { "STB", "ACK", "Online", "Free", "BarCode", "TaskNo"};
|
| public static List<string> RgvDBdata = new List<string>() { "STB", "TaskNo", "WorkType", "GoodsType", "StartPos", "EndPos", "Alarm" };
|
| public static List<string> RgvDBstaticdata = new List<string>() { "STB", "TaskNo", "TaskFinish","Alarm", "ACK", "Free", "Online" };
| }
| }
|
|