You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
652 B
C#
33 lines
652 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Core.OldBoxFoam.Models
|
|
{
|
|
/// <summary>
|
|
/// 执行计划
|
|
/// </summary>
|
|
public class BoxFoamPlanModel : ObservableObject
|
|
{
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
public int No { get; set; }
|
|
|
|
public int ObjId { get; set; }
|
|
|
|
public string MaterialCode { get; set; }
|
|
|
|
|
|
public string MaterialName { get; set; }
|
|
|
|
|
|
public int PlanAmount { get; set; }
|
|
|
|
}
|
|
}
|