OrderState.cs
472 字节
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace DeviceLib.Model.AGV
{
/// <summary>
/// 订单状态
/// </summary>
[Table("tbl_order_states")]
public class OrderState
{
[Key]
public int id { get; set; }
public string name { get; set; }
public string description { get; set; }
}
}