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
{
///
/// 计划类型(1:班组计划 2:月份计划)
///
[Comment("计划类型(1:班组计划 2:月份计划)")]
[MaxLength(255)]
public string PlanType { get; set; }
///
/// 计划时间
///
[Comment("计划时间")]
public DateTime PlanTime { get; set; }
///
/// 班组类型(白班,晚班)
///
[Comment("班组类型(白班,晚班)")]
[MaxLength(255)]
public string TeamType { get; set; }
///
/// 计划生产数量
///
[Comment("计划生产数量")]
public int PlanProductionNum { get; set; }
///
/// 备注
///
[Comment("备注")]
[MaxLength(255)]
public string Remarks { get; set; }
}
}