CSFramework.CodeGeneratorV6.0-bll_Demo_Customer.cs
客户资料管理窗体的BLL层。
C# 全选
using System;
using System.Collections.Generic;
using CSFrameworkV6.Models;
using CSFrameworkV6.Common;
using CSFrameworkV6.Core;
using CSFrameworkV6.Interfaces;
using CSFrameworkV6.Business;
using CSFrameworkV6.DataAccess;
using CSFrameworkV6.WebApiClient;
/*===================================================================
* 程序说明: Demo_Customer 基础资料BLL层(直连WebApi接口层)
* 作者资料: CSFramework
* 创建日期: 2023/02/27 06:35:04
* 最后修改: 2023/02/27 06:35:04
*
* 注:本文件由CSFramework.CodeGenerator代码生成器自动生成。
* 请将源码文件复制到 YourProject 对应的项目。
*
* 版权所有 Copyright 2006~2023, C/S框架网 (www.csframework.com)
*===================================================================*/
namespace CSFrameworkV6.Business
{
/// <summary>
/// BLL业务逻辑层:bll_Demo_Customer
/// </summary>
public class bll_Demo_Customer : bllBaseDataDict<_Demo_Customer>
{
public bll_Demo_Customer()
{
_SummaryTableName = nameof(_Demo_Customer);//表名
_KeyFieldName = nameof(_Demo_Customer.isid);//主键字段
_DataDictBridge = WebApiClient.WebApiProvider.GetInterface<_Demo_Customer>();
}
//省略....
}
}
版权声明:本文为开发框架文库发布内容,转载请附上原文出处连接
CodeGeneratorV6 C/S框架网