using System; using System.Collections.Generic; using System.Linq; using System.Text; using Prism.Mvvm; using System.Threading.Tasks; namespace DefaultEdit.Model { /// /// /// public partial class tb_formulasdata:BindableBase { public tb_formulasdata() { } /// /// Desc: /// Default: /// Nullable:True /// private long _Id; /// /// Desc: /// Default: /// Nullable:True /// private string _第一次离心转速; /// /// Desc: /// Default: /// Nullable:True /// private string _第一次离心时间; /// /// Desc: /// Default: /// Nullable:True /// private string _第二次离心转速; /// /// Desc: /// Default: /// Nullable:True /// 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); } } } }