using System;
namespace ZR.CodeGenerator.Model
{
public class ReplaceDto
{
///
/// 主键字段
///
public string PKName { get; set; }
///
/// 首字母小写主键
///
public string FistLowerPk{ get; set; }
///
/// 主键类型
///
public string PKType { get; set; }
///
/// 控制器权限
///
public string PermissionPrefix { get; set; }
///
/// C#类名
///
public string ModelTypeName { get; set; }
//vue、api
//public string VueViewFormResetHtml { get; set; }
///
/// 前端列表查询html
///
public string VueViewListHtml { get; set; }
///
/// 前端添加、编辑表格html
///
public string VueViewFormHtml { get; set; }
///
/// 前端搜索表单html
///
public string VueQueryFormHtml { get; set; }
///
/// 查询条件
///
public string QueryCondition { get; set; } = "";
public bool ShowBtnExport { get; set; }
public bool ShowBtnAdd { get; set; }
public bool ShowBtnEdit { get; set; }
public bool ShowBtnDelete { get; set; }
public bool ShowBtnView { get; set; }
public bool ShowBtnTruncate { get; set; }
///
/// 上传URL data
///
//public string VueUploadUrl { get; set; }
public int UploadFile { get; set; } = 0;
///
/// 是否有下拉多选框
///
public int SelectMulti { get; set; }
public string Author { get; set; }
public string AddTime { get; set; } = DateTime.Now.ToString("yyyy-MM-dd");
///
/// 是否有编辑器
///
public int ShowEditor { get; set; }
}
}