| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using Prism.Mvvm;
- using System;
- namespace SKMC.Api.Recipe.Model
- {
- public class RecipeProfile : BindableBase
- {
- private long _id;
- public long Id
- {
- get { return _id; }
- set { _id = value; }
- }
- private string _code;
- public string Code
- {
- get { return _code; }
- set { _code = value; RaisePropertyChanged(); }
- }
- private string _name;
- public string Name
- {
- get { return _name; }
- set { _name = value; RaisePropertyChanged(); }
- }
- private string _productCode;
- public string ProductCode
- {
- get { return _productCode; }
- set { _productCode = value; RaisePropertyChanged(); }
- }
- private string _note;
- public string Note
- {
- get { return _note; }
- set { _note = value; }
- }
- private DateTime _createTime;
- public DateTime CreateTime
- {
- get { return _createTime; }
- set { _createTime = value; }
- }
- private DateTime _updateTime;
- public DateTime UpdateTime
- {
- get { return _updateTime; }
- set { _updateTime = value; }
- }
- }
- }
|