using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.Models
{
///
/// 产品型号参数范围
///
public class ProductModelParam
{
///
/// OCV内阻最大值
///
public decimal OcvIrMax { set; get; }
///
/// OCV内阻最小值
///
public decimal OcvIrMin { set; get; }
///
/// OCV电压最大值
///
public decimal OcvVoltageMax { set; get; }
///
/// OCV电压最小值
///
public decimal OcvVoltageMin { set; get; }
///
/// OCV静置时间最大值
///
public decimal OcvTimeMax { set; get; }
///
/// OCV静置时间最小值
///
public decimal OcvTimeMin { set; get; }
///
/// 常数A
///
public decimal CoefficientA { get; set; }
///
///常数B
///
public decimal ExponentB { get; set; }
}
}