1
huangxiaoqiang
2025-06-26 37d02df69d8e9d7c4f30e069a8f6caa3e47a5de7
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!;
     
    }
    
}