Files
6098/Cowain.Bake.Model/Entity/WorkOrderFormulaEntity.cs

16 lines
378 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cowain.Bake.Model.Entity
{
public class WorkOrderFormulaEntity:TProductionInformation
{
public string Parameters { get; set; }
public string ProcessParamName { get; set; }
public bool? BaseFlag { get; set; }
}
}