16 lines
378 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|