1
huangxiaoqiang
2025-06-09 c4be9e236670cbca7e081fd4778523b339a1f624
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
using WIDESEA_Core.DB.Models;
namespace WIDESEA_Model.Models
{
    /// <summary>
    /// 手自动模式
    ///</summary>
    [SugarTable("Dt_HandAutomatic")]
    public class Dt_HandAutomatic : BaseEntity
    {
        
     
        /// <summary>
        /// 备  注:id
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="id" ,IsPrimaryKey = true,IsIdentity = true) ]
        public int id  { get; set;  }
 
        /// <summary>
        /// 备  注:模式 Automatic自动 、Manual手动
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName= "HandAutomatic") ]
        public string HandAutomatic { get; set;  } = null!;
     
    }
    
}