This commit is contained in:
sunkaixuan
2024-05-18 14:26:33 +08:00
parent b0a46b393c
commit c7b543eca2
2 changed files with 25 additions and 28 deletions

View File

@@ -7,10 +7,10 @@ using System.Text;
namespace OrmTest
{
public class Order
public class OrderTest
{
[SugarColumn(IsPrimaryKey = true, OracleSequenceName ="Seq_Id")]
public int Id { get; set; }
[SugarColumn(IsPrimaryKey = true)]
public long Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }