namespace DB.Entity
{
///
/// 页面编码 手动界面,参数界面,主界面
/// code 对应页面的名称 fromMain
///
public class Function:BaseChimsDb
{
public string FunctionName { get; set; }
public string FunctionCode { get; set; }
}
public class FunctionMapper : SystemEntityTypeBuilder
{
public FunctionMapper() : base("Function")
{
}
}
}