JobContextInfo.cs
460 字节
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeviceLibrary
{
[Table("job_context")]
public class JobContextInfo
{
public string agvName { get; set; }
[Key]
public string ip { get; set; }
public string jobContext { get; set; }
}
}