using Business.EntityFrameworkCore; using Business.Models; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Globalization; using System.Linq; using System.Net.NetworkInformation; using System.Text; using System.Threading.Tasks; namespace Bussiness.Model.SystemData { /// /// sim基本表 /// public class sim_base:BaseEntity { /// /// 主键id /// [Key] public long sim_id { get; set; } /// /// sim等级 /// [StringLength(255)] public string sim_grade { get; set; } /// /// sim层级顺序 /// public int sim_level { get; set; } /// /// 上升周期 /// [DecimalPrecision(10,0)] public decimal rise_cycle { get; set; } /// /// 间隔天数 /// [DecimalPrecision(10, 0)] public decimal interval_days { get; set; } /// /// 上升时间 /// public DateTime rise_time { get; set; } } }