You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
705 B
35 lines
705 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GDZZ.Core.Service;
|
|
|
|
public class CreateEntityInput
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <example>student</example>
|
|
public string TableName { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <example>Student</example>
|
|
public string EntityName { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <example>AutoIncrementEntity</example>
|
|
public string BaseClassName { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <example>GDZZ.Application</example>
|
|
public string Position { get; set; }
|
|
}
|