Beispiel #1
0
        //修改工具功能测试
        public int toolFunctionTestUpdate(List <int> toolFunctionTestStatue, List <String> toolFunctionTestComment, String orderId)
        {
            ToolFunctionTestDB toolFunctionTestDb = new ToolFunctionTestDB();

            if (toolFunctionTestStatue.Count < 6)
            {
                for (int i = toolFunctionTestStatue.Count; i < 6; i++)
                {
                    toolFunctionTestStatue.Add(0);
                    toolFunctionTestComment.Add(null);
                }
            }

            return(toolFunctionTestDb.toolFunctionTestUpdate(toolFunctionTestStatue, toolFunctionTestComment, orderId));
        }