/** 版本信息模板在安装目录下,可自行修改。 * 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 { /// /// customer:实体类(属性说明自动提取数据库字段的描述信息) /// [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; /// /// /// public string id_ { set{ _id_=value;} get{return _id_;} } /// /// /// public string company_ { set{ _company_=value;} get{return _company_;} } /// /// /// public string name_ { set{ _name_=value;} get{return _name_;} } /// /// /// public string phone_ { set{ _phone_=value;} get{return _phone_;} } /// /// /// public bool del_flag { set{ _del_flag=value;} get{return _del_flag;} } /// /// /// public string create_by { set{ _create_by=value;} get{return _create_by;} } /// /// /// public DateTime? create_time { set{ _create_time=value;} get{return _create_time;} } /// /// /// public string update_by { set{ _update_by=value;} get{return _update_by;} } /// /// /// public DateTime? update_time { set{ _update_time=value;} get{return _update_time;} } #endregion Model } }