123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /** 版本信息模板在安装目录下,可自行修改。
- * customer.cs
- *
- * 功 能: N/A
- * 类 名: customer
- *
- * Ver 变更日期 负责人 变更内容
- * ───────────────────────────────────
- * V0.01 2024-07-27 10:51:14 N/A 初版
- *
- * Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
- *┌──────────────────────────────────┐
- *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
- *│ 版权所有:动软卓越(北京)科技有限公司 │
- *└──────────────────────────────────┘
- */
- using System;
- namespace Jpsoft.Model
- {
- /// <summary>
- /// customer:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class Customer
- {
- public Customer()
- {}
- #region Model
- private string _id_;
- private string _company_;
- private string _name_;
- private string _phone_;
- private bool _del_flag;
- private string _create_by;
- private DateTime? _create_time;
- private string _update_by;
- private DateTime? _update_time;
- /// <summary>
- ///
- /// </summary>
- public string id_
- {
- set{ _id_=value;}
- get{return _id_;}
- }
- /// <summary>
- ///
- /// </summary>
- public string company_
- {
- set{ _company_=value;}
- get{return _company_;}
- }
- /// <summary>
- ///
- /// </summary>
- public string name_
- {
- set{ _name_=value;}
- get{return _name_;}
- }
- /// <summary>
- ///
- /// </summary>
- public string phone_
- {
- set{ _phone_=value;}
- get{return _phone_;}
- }
- /// <summary>
- ///
- /// </summary>
- public bool del_flag
- {
- set{ _del_flag=value;}
- get{return _del_flag;}
- }
- /// <summary>
- ///
- /// </summary>
- public string create_by
- {
- set{ _create_by=value;}
- get{return _create_by;}
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? create_time
- {
- set{ _create_time=value;}
- get{return _create_time;}
- }
- /// <summary>
- ///
- /// </summary>
- public string update_by
- {
- set{ _update_by=value;}
- get{return _update_by;}
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? update_time
- {
- set{ _update_time=value;}
- get{return _update_time;}
- }
- #endregion Model
- }
- }
|