Files
wcs/WCS.Model/ApiModel/StoreInfo/CalibrationSetOffsetRequest.cs
hehaibing-1996 7b8a885669 提交代码
2024-07-16 16:45:18 +08:00

14 lines
276 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.StoreInfo
{
public class CalibrationSetOffsetRequest : RequestBase
{
public List<int> MouduleIds { get; set; }
public int OffSet { get; set; }
}
}