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/Para/ParaTargetValVM.cs

20 lines
573 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProductionSystem_Model.ViewModel.Response.Para
{
public class ParaTargetValVM
{
public string STF1TargetVal { get; set; }
public string STF2TargetVal { get; set; }
public string PZF1TargetVal { get; set; }
public string PZF2TargetVal { get; set; }
public string SB1TargetVal { get; set; }
public string SB2TargetVal { get; set; }
public string SB3TargetVal { get; set; }
}
}