2020-10-22 14:59:36 +08:00
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
// <autogenerated>
|
|
|
|
|
// This code was generated by a CodeSmith Template.
|
|
|
|
|
//
|
|
|
|
|
// DO NOT MODIFY contents of this file. Changes to this
|
|
|
|
|
// file will be lost if the code is regenerated.
|
|
|
|
|
// Author:Yubao Li
|
|
|
|
|
// </autogenerated>
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using OpenAuth.Repository.Core;
|
|
|
|
|
|
|
|
|
|
namespace OpenAuth.App.Request
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 代码生成器的表信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CreateVueReq
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 代码生成模版Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// vue项目所在的根目录,如:D:\OpenAuth.Pro\Client
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VueProjRootPath { get; set; }
|
2022-10-05 17:29:59 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 版本信息
|
|
|
|
|
/// 值为vue2/vue3,默认为vue2
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Version { get; set; }
|
2020-10-22 14:59:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|