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.Text; |
|||
|
|||
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>
|
|||
public string ProcessName { get; set; } |
|||
private string processName; |
|||
public string ProcessName { get => processName; set { Set(ref processName, value); } } |
|||
/// <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