| 123456789101112131415161718192021222324252627282930 |
- using Business.Core.Attributes;
- using Bussiness.MongoModel;
- using Microsoft.EntityFrameworkCore;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace Bussiness.MongoModel.SIM
- {
- /// <summary>
- /// sim事项表
- /// </summary>
- [Comment("sim事项表")]
- [CollectionName("dopbase", "mo_sim_plant")]
- public class mo_sim_plant:MoBaseEntity
- {
- ///// <summary>
- ///// 主键id
- ///// </summary>
- //[Key]
- //[Comment("主键id")]
- //public long plant_id { get; set; }
- /// <summary>
- /// 事项名称
- /// </summary>
- [StringLength(255)]
- [Comment("事项名称")]
- public string? plant_name { get; set; }
- }
- }
|