2025-03-28 09:49:56 +08:00

15 lines
317 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RFIDServicePlate
{
public class CommodityModel
{
public string CommodityName { get; set; }
public decimal CommodityPrice { get; set; }
public string CommodityCode { get; set; }
}
}