/** 版本信息模板在安装目录下,可自行修改。 * base_stock.cs * * 功 能: N/A * 类 名: base_stock * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2024-07-22 11:33:39 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace Jpsoft.Model { /// /// base_stock:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class Stock { public Stock() {} #region Model private string _id_; private string _work_id; private string _machine_name; private int? _stock_number; private decimal? _length_; private decimal? _tag_length; private string _flaw_; private int? _status_; 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 work_id { set{ _work_id=value;} get{return _work_id;} } /// /// /// public string machine_name { set{ _machine_name=value;} get{return _machine_name;} } /// /// /// public int? stock_number { set{ _stock_number=value;} get{return _stock_number;} } /// /// /// public decimal? length_ { set{ _length_=value;} get{return _length_;} } /// /// /// public decimal? tag_length { set{ _tag_length=value;} get{return _tag_length;} } /// /// /// public string flaw_ { set{ _flaw_=value;} get{return _flaw_;} } /// /// /// public int? status_ { set{ _status_=value;} get{return _status_;} } /// /// /// 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 } }