KeyValueModel.cs 584 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 电量配置
	/// </summary>
    public partial class KeyValueModel
    {
        /// <summary>
        /// "电量等级 Danger,Savety,Cfull,string(20),唯一",
        /// </summary>
        public string keyVariable { get; set; }
        /// <summary>
        /// "电量值,float"
        /// </summary>
        public float? value { get; set; }

        public KeyValueModel()
        { 
        
        }
    }
}