1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PaintDotNet.DbOpreate.DbModel
- {
- [Table("mic_module_infos", Schema = "dbo")]
- [Serializable]
- public class mic_module_infos
- {
- public mic_module_infos()
- {
- }
- /// <summary>
- /// 主键ID
- /// </summary>
- [Key]
- public int id { get; set; }
- /// <summary>
- /// 分析分类名称
- /// </summary>
- public string analyze_classify { get; set; }
- /// <summary>
- /// word书签名称
- /// </summary>
- public string tag_name { get; set; }
- /// <summary>
- /// excel公式的单元格位置
- /// </summary>
- public string cell_position { get; set; }
- }
- }
|