3 changed files with 19 additions and 9 deletions
@ -1,19 +1,24 @@ |
|||||
using System; |
using Org.BouncyCastle.Asn1.Esf; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Text; |
using System.Text; |
||||
|
|
||||
namespace BBWY.Client.Models.PackTask |
namespace BBWY.Client.Models.PackTask |
||||
{ |
{ |
||||
public class WorkProcessModel |
public class WorkProcessModel:NotifyObject |
||||
{ |
{ |
||||
public long Id { get; set; } |
private long id; |
||||
|
public long Id { get=>id; set { Set(ref id,value); } } |
||||
/// <summary>
|
/// <summary>
|
||||
/// 工序名称
|
/// 工序名称
|
||||
/// </summary>
|
/// </summary>
|
||||
public string ProcessName { get; set; } |
private string processName; |
||||
|
public string ProcessName { get => processName; set { Set(ref processName, value); } } |
||||
/// <summary>
|
/// <summary>
|
||||
/// 价格
|
/// 价格
|
||||
/// </summary>
|
/// </summary>
|
||||
public decimal ProcessPrice { get; set; } |
private decimal processPrice; |
||||
|
public decimal ProcessPrice { get => processPrice; set { Set(ref processPrice, value); } } |
||||
|
|
||||
} |
} |
||||
} |
} |
||||
|
Loading…
Reference in new issue