步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
705 B

2 years ago
using Org.BouncyCastle.Asn1.Esf;
using System;
2 years ago
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models.PackTask
{
2 years ago
public class WorkProcessModel:NotifyObject
2 years ago
{
2 years ago
private long id;
public long Id { get=>id; set { Set(ref id,value); } }
2 years ago
/// <summary>
/// 工序名称
/// </summary>
2 years ago
private string processName;
public string ProcessName { get => processName; set { Set(ref processName, value); } }
2 years ago
/// <summary>
/// 价格
/// </summary>
2 years ago
private decimal processPrice;
public decimal ProcessPrice { get => processPrice; set { Set(ref processPrice, value); } }
2 years ago
}
}