| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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_base")]
- public class mo_sim_base:MoBaseEntity
- {
- ///// <summary>
- ///// 主键id
- ///// </summary>
- //[Key]
- //[Comment("主键id")]
- //public long sim_id { get; set; }
- /// <summary>
- /// sim等级
- /// </summary>
- [StringLength(255)]
- [Comment("sim等级")]
- public string? sim_grade { get; set; }
- /// <summary>
- /// sim层级顺序
- /// </summary>
- [Comment("sim层级顺序")]
- public int? sim_level { get; set; }
- /// <summary>
- /// 上升周期
- /// </summary>
- [Precision(10,0)]
- [Comment("上升周期")]
- public decimal? rise_cycle { get; set; }
- /// <summary>
- /// 间隔天数
- /// </summary>
- [Precision(10, 0)]
- [Comment("间隔天数")]
- public decimal? interval_days { get; set; }
- /// <summary>
- /// 上升时间
- /// </summary>
- [Comment("上升时间")]
- public DateTime? rise_time { get; set; }
- }
- }
|