2025-11-11 09:20:17 +08:00

16 lines
313 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Syc.Basic.Web.WMS.Dto
{
public class ValuesDto
{
public int Id { get; set; }
public string[] Keys { get; set; }
public int Value { get; set; }
}
}