mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-15 14:04:44 +08:00
21 lines
349 B
C#
21 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrmTest.UnitTest
|
|
{
|
|
public class Attribute : ExpTestBase
|
|
{
|
|
public Attribute(int eachCount)
|
|
{
|
|
this.Count = eachCount;
|
|
}
|
|
public void Init()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|