21 lines
527 B
C#
21 lines
527 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.EquipMgr.Entities.Consts
|
|
{
|
|
public class MoldUseStatus
|
|
{
|
|
/// <summary>
|
|
/// 模具使用状态在库状态ID
|
|
/// </summary>
|
|
public const string MOLD_USE_STATUS_ZK_ID = "26149307089941";
|
|
/// <summary>
|
|
/// 模具使用状态-保养Id
|
|
/// </summary>
|
|
public const string MOLD_USE_STATUS_MAINTAIN_ID = "26149311082005";
|
|
}
|
|
}
|