提交代码

This commit is contained in:
2024-09-24 14:48:23 +08:00
parent 1e2fb71789
commit a010e5e2a2
4 changed files with 171 additions and 169 deletions
+3 -2
View File
@@ -56,8 +56,9 @@
<Reference Include="EmitMapper, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\EmitMapper.1.0.0\lib\EmitMapper.dll</HintPath>
</Reference>
<Reference Include="FineUIPro">
<HintPath>..\FineUIPro\Reference BLL\FineUIPro.dll</HintPath>
<Reference Include="FineUIPro, Version=6.3.0.0, Culture=neutral, PublicKeyToken=9cbe753c029f291a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\FineUIPro\FineUIPro.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.SharpZipLib, Version=1.3.3.11, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
<HintPath>..\packages\SharpZipLib.1.3.3\lib\net45\ICSharpCode.SharpZipLib.dll</HintPath>
+35 -34
View File
@@ -1,38 +1,38 @@
using System.Collections.Generic;
namespace BLL;
public class TwConst
namespace BLL
{
public enum InOutType : int
public class TwConst
{
= 1,
= 2,
}
public enum TypeInt : int
{
= 10,
退 = 20,
= 30,
= 40,
= 50,
= 60,
}
public enum Category : int
{
= 0,
= 1,
= 2,
}
public enum State : int
{
= -1,
= 0,
= 1,
= 2,
= 3,
}
public static Dictionary<string, int> TypeIntMap = new Dictionary<string, int>
public enum InOutType : int
{
= 1,
= 2,
}
public enum TypeInt : int
{
= 10,
退 = 20,
= 30,
= 40,
= 50,
= 60,
}
public enum Category : int
{
= 0,
= 1,
= 2,
}
public enum State : int
{
= -1,
= 0,
= 1,
= 2,
= 3,
}
public static Dictionary<string, int> TypeIntMap = new Dictionary<string, int>
{
{ "采购入库" ,(int)TypeInt.},
{ "退料入库" ,(int)TypeInt.退},
@@ -41,7 +41,7 @@ public class TwConst
{ "补料出库" ,(int)TypeInt.},
{ "其他出库" ,(int)TypeInt.}
};
public static Dictionary<string, int> StateMap = new Dictionary<string, int>
public static Dictionary<string, int> StateMap = new Dictionary<string, int>
{
{ "待提交" ,(int)State.},
{ "待审核" ,(int)State.},
@@ -49,9 +49,10 @@ public class TwConst
{ "已完成" ,(int)State.},
{ "审核被拒" ,(int)State.},
};
public static Dictionary<string, int> CategoryMap = new Dictionary<string, int>
public static Dictionary<string, int> CategoryMap = new Dictionary<string, int>
{
{ "管件" ,(int)Category.},
{ "管段" ,(int)Category.},
{ "管段" ,(int)Category.},
};
}
}