| 123456789101112131415161718192021222324252627282930 |
- using CP.Business;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleTest
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("开始...");
- //ZtColumnBll.TestAdd();
- try
- {
- //new ZtArticleTest().TestAdd();
- new ZtArticleDetailTest().TestAdd();
- }
- catch (Exception ex)
- {
- Console.WriteLine(ex.Message);
- }
- Console.WriteLine("结束");
- Console.ReadLine();
- }
- }
- }
|