1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Prism.Mvvm;
- using System.Threading.Tasks;
- namespace DefaultEdit.Model
- {
- ///<summary>
- ///
- ///</summary>
- public partial class tb_formulasdata:BindableBase
- {
- public tb_formulasdata()
- {
- }
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:True
- /// </summary>
- private long _Id;
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:True
- /// </summary>
- private string _第一次离心转速;
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:True
- /// </summary>
- private string _第一次离心时间;
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:True
- /// </summary>
- private string _第二次离心转速;
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:True
- /// </summary>
- private string _第二次离心时间;
- private string _光固化时间;
- public long Id { get => _Id; set { SetProperty(ref _Id, value); } }
- public string 第一次离心转速 { get => _第一次离心转速; set { SetProperty(ref _第一次离心转速, value); } }
- public string 第一次离心时间 { get => _第一次离心时间; set { SetProperty(ref _第一次离心时间, value); } }
- public string 第二次离心转速 { get => _第二次离心转速; set { SetProperty(ref _第二次离心转速, value); } }
- public string 第二次离心时间 { get => _第二次离心时间; set { SetProperty(ref _第二次离心时间, value); } }
- public string 光固化时间 { get => _光固化时间; set { SetProperty(ref _光固化时间, value); } }
- }
- }
|