27 lines
517 B
C#
27 lines
517 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AUTS.Services.Manager
|
|
{
|
|
public class Home
|
|
{
|
|
/// <summary>
|
|
/// 已确认
|
|
/// </summary>
|
|
public int confirm { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生产中
|
|
/// </summary>
|
|
public int yield { get; set; }
|
|
|
|
/// <summary>
|
|
/// 已完成
|
|
/// </summary>
|
|
public int accomplish { get; set; }
|
|
}
|
|
}
|