| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- using System;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// T_Sys_EquipmentNumber:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Sys_EquipmentNumber
- {
- public T_Sys_EquipmentNumber()
- { }
- #region Model
- private int _f_id;
- private string _f_production;
- private string _f_factorycode;
- private string _f_ligaturemachinecode;
- private string _f_stretchfilmcode;
- private string _f_qcstaffcode;
- private DateTime? _f_creationtime;
- private string _f_creatuser;
- private long? _f_isdelete;
- /// <summary>
- ///
- /// </summary>
- public int F_ID
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- /// 生产单位
- /// </summary>
- public string F_Production
- {
- set { _f_production = value; }
- get { return _f_production; }
- }
- /// <summary>
- /// 工厂代码
- /// </summary>
- public string F_FactoryCode
- {
- set { _f_factorycode = value; }
- get { return _f_factorycode; }
- }
- /// <summary>
- /// 结扎机编号
- /// </summary>
- public string F_LigatureMachineCode
- {
- set { _f_ligaturemachinecode = value; }
- get { return _f_ligaturemachinecode; }
- }
- /// <summary>
- /// 拉伸膜包装机编号
- /// </summary>
- public string F_StretchFilmCode
- {
- set { _f_stretchfilmcode = value; }
- get { return _f_stretchfilmcode; }
- }
- /// <summary>
- /// 品管员代码
- /// </summary>
- public string F_QCStaffCode
- {
- set { _f_qcstaffcode = value; }
- get { return _f_qcstaffcode; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- public DateTime? F_CreationTime
- {
- set { _f_creationtime = value; }
- get { return _f_creationtime; }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- public string F_CreatUser
- {
- set { _f_creatuser = value; }
- get { return _f_creatuser; }
- }
- /// <summary>
- /// 是否删除
- /// </summary>
- public long? F_IsDelete
- {
- set { _f_isdelete = value; }
- get { return _f_isdelete; }
- }
- public string F_Manager
- {
- get;set;
- }
- #endregion Model
- }
- }
|