using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Core.Service;
public class CreateEntityInput
{
///
///
///
/// student
public string TableName { get; set; }
///
///
///
/// Student
public string EntityName { get; set; }
///
///
///
/// AutoIncrementEntity
public string BaseClassName { get; set; }
///
///
///
/// GDZZ.Application
public string Position { get; set; }
}