using Business.Core.Attributes;
using Bussiness.MongoModel;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Bussiness.MongoModel.SIM
{
///
/// sim基本表
///
[Comment("sim基本表")]
[CollectionName("dopbase", "mo_sim_base")]
public class mo_sim_base:MoBaseEntity
{
/////
///// 主键id
/////
//[Key]
//[Comment("主键id")]
//public long sim_id { get; set; }
///
/// sim等级
///
[StringLength(255)]
[Comment("sim等级")]
public string? sim_grade { get; set; }
///
/// sim层级顺序
///
[Comment("sim层级顺序")]
public int? sim_level { get; set; }
///
/// 上升周期
///
[Precision(10,0)]
[Comment("上升周期")]
public decimal? rise_cycle { get; set; }
///
/// 间隔天数
///
[Precision(10, 0)]
[Comment("间隔天数")]
public decimal? interval_days { get; set; }
///
/// 上升时间
///
[Comment("上升时间")]
public DateTime? rise_time { get; set; }
}
}