CSFramework.CodeGeneratorV6.0-_Demo_Customer.cs
客户资料管理实体模型。
C# 全选
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
/*===================================================================
* 程序说明: _Demo_Customer 实体类(ORM模型)
* 作者资料: CSFramework
* 创建日期: 2023/03/04 08:56:10
* 最后修改: 2023/03/04 08:56:10
*
* 注:本文件由CSFramework.CodeGenerator代码生成器自动生成。
* 请将源码文件复制到 YourProject 对应的项目。
*
* 版权所有 Copyright 2006~2023, C/S框架网 (www.csframework.com)
*===================================================================*/
namespace CSFrameworkV6.Models
{
///<summary>
/// 数据表:_Demo_Customer的实体模型(ORM Model)。
/// </summary>
[Table("_Demo_Customer")]
public class _Demo_Customer
{
#region 所有字段属性
[Key, Column(Order = 1)]
public String isid { get; set; }
[Timestamp]
public Byte[] TS { get; set; }
public String CustomerCode { get; set; }
//省略....
}
}
版权声明:本文为开发框架文库发布内容,转载请附上原文出处连接
CodeGeneratorV6 C/S框架网