User.cs
478 字节
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace DeviceLib.Model.AGV
{
[Table("tbl_users")]
public class User
{
[Key]
public int id { get; set; }
public string name { get; set; }
public string password { get; set; }
public int role { get; set; }
public string remark { get; set; }
}
}