Update core

This commit is contained in:
sunkaixuan
2022-02-27 00:24:12 +08:00
parent 18a01d885c
commit c8017efb9b
22 changed files with 2110 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class ViewOrder:Order
{
public string CustomName { get; set; }
}
}