using Microsoft.EntityFrameworkCore;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace iWare.Wms.Core
|
{
|
[Table("ProductionPlanInfo")]
|
[Comment("生产计划表")]
|
public class ProductionPlanInfo : DEntityBase
|
{
|
|
/// <summary>
|
/// 计划类型(1:班组计划 2:月份计划)
|
/// </summary>
|
[Comment("计划类型(1:班组计划 2:月份计划)")]
|
[MaxLength(255)]
|
public string PlanType { get; set; }
|
/// <summary>
|
/// 计划时间
|
/// </summary>
|
[Comment("计划时间")]
|
public DateTime PlanTime { get; set; }
|
|
/// <summary>
|
/// 班组类型(白班,晚班)
|
/// </summary>
|
[Comment("班组类型(白班,晚班)")]
|
[MaxLength(255)]
|
public string TeamType { get; set; }
|
|
/// <summary>
|
/// 计划生产数量
|
/// </summary>
|
[Comment("计划生产数量")]
|
public int PlanProductionNum { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[Comment("备注")]
|
[MaxLength(255)]
|
public string Remarks { get; set; }
|
|
|
}
|
}
|