Add CSharpTypeName to ConditionalModel

This commit is contained in:
sunkaixuna
2022-01-09 17:55:55 +08:00
parent 306e7792b1
commit 8cfdaa987f
9 changed files with 127 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest.UnitTest.Models
{
[SqlSugar.SugarTable("UnitMyOrder")]
public class MYOrder
{
public int Id { get; set; }
public string Name { get; set; }
[SqlSugar.SugarColumn(Length = 18, DecimalDigits = 4)]
public decimal Price { get; set; }
}
}