using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.CodeGenerator.Model
{
public class ReplaceDto
{
//public string ModelsNamespace { get; set; }
//public string DtosNamespace { get; set; }
//public string RepositoriesNamespace { get; set; }
//public string IRepositoriesNamespace { get; set; }
//public string IServicsNamespace { get; set; }
//public string ServicesNamespace { get; set; }
///
/// 主键字段
///
public string PrimaryKey { get; set; }
///
/// 主键类型
///
public string KeyTypeName { get; set; }
///
/// 控制器权限
///
public string Permission { get; set; }
///
/// C#类名
///
public string ModelTypeName { get; set; }
///
/// 数据库表名
///
public string TableName { get; set; }
///
/// 表描述、说明
///
public string TableDesc { get; set; }
public string updateColumn { get; set; }
///
/// 实体属性模板
///
public string ModelProperty { get; set; }
///
/// 输入Dto模板
///
public string InputDtoProperty { get; set; }
//vue、api
public string VueViewEditFormContent { get; set; }
public string VueViewListContent { get; set; }
public string VueViewFormContent { get; set; }
public string VueJsMethod { get; set; }
public string VueViewEditFormRuleContent { get; set; }
}
}