SqlSugar/Src/Asp.NetCore2/Net7Test/NET7Test/NET7Test/UserInfo.cs
2023-02-03 04:48:38 +08:00

21 lines
498 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NET7Test
{
public class Userinfo021
{
[SqlSugar.SugarColumn( IsIdentity =true)]
public int id { get; set; }
public string user_name { get; set; }
public string pwd { get; set; }
public int create_user_id { get; set; }
public DateTime gmt_modified { get; set; }
public bool deleted { get; set; }
}
}