23 lines
508 B
C#
23 lines
508 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YunDa.Server.ISMSTcp.Models
|
|
{
|
|
// YC数据类
|
|
public class YCData
|
|
{
|
|
[JsonPropertyName("YC_ID")]
|
|
public string YC_ID { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("V")]
|
|
public decimal V { get; set; }
|
|
|
|
[JsonPropertyName("T")]
|
|
public string T { get; set; } = string.Empty;
|
|
}
|
|
}
|