mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-18 13:26:41 +08:00
21 lines
498 B
C#
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; }
|
|
}
|
|
|
|
}
|