You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ProductionSystem/ProductionSystem_Model/ViewModel/Response/SaveDbPointVM.cs

19 lines
417 B
C#

12 months ago
namespace ProductionSystem_Model.ViewModel.Response
{
public class SaveDbPointVM
{
public string PointCode { get; set; }
public string PointName { get; set; }
public string PointAddress { get; set; }
/// <summary>
/// 结果表字段名称
/// </summary>
public string ResultField { get; set; }
public int SortIndex { get; set; }
}
}