Files
6098/Cowain.Bake.Model/Models/WaterModel.cs

22 lines
521 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cowain.Bake.Model.Models
{
public class WaterModel
{
public int Id { get; set; } = 1;
public string BatteryCode { get; set; }
//正极
public string AnodeWaterValue { get; set; } = "0";
//隔膜
public string SeptumWaterValue { get; set; } = "0";
//负极
public string CathodeWaterValue { get; set; } = "0";
}
}