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.

158 lines
4.6 KiB

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zzz.Model.Entity
{
/// <summary>
/// 生成工单
/// </summary>
[SugarTable("plan_order")]
public class plan_order
{
/// <summary>
/// 内码
/// </summary>
[SugarColumn(IsNullable = false, ColumnDescription = "内码", ColumnDataType = "int")]
public long FID { get; set; }
/// <summary>
/// 单据编号
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "单据编号", Length = 255)]
public string FBILL_NO { get; set; }
/// <summary>
/// 单据类型
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "单据类型", Length = 255)]
public string FBILL_TYPE { get; set; }
/// <summary>
/// 单据时间
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "单据时间")]
public DateTime? FDATE { get; set; }
/// <summary>
/// 单据状态
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "单据状态", Length = 255)]
public string FDOCUMENT_STATUS { get; set; }
/// <summary>
/// 产品类型
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "产品类型", Length = 255)]
public string FPRODUCT_TYPE { get; set; }
/// <summary>
/// 入库编号
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "入库编号")]
public long FENTRY_ID { get; set; }
/// <summary>
/// 物料编码
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "物料编码", Length = 255)]
public string FMATERIAL_ID { get; set; }
/// <summary>
/// 产品编码
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "产品编码", Length = 255)]
public string FNUMBER { get; set; }
/// <summary>
/// 产品名称
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "产品名称", Length = 255)]
public string FMATERIAL_NAME { get; set; }
/// <summary>
/// 产品规格
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "产品规格", Length = 255)]
public string FSPECIFICATION { get; set; }
/// <summary>
/// 生产车间
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "生产车间", Length = 255)]
public string FWORK_SHOP { get; set; }
/// <summary>
/// 单位
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "单位", Length = 255)]
public string FUNIT_ID { get; set; }
/// <summary>
/// 计划生产数量
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "单据状态")]
public decimal? FQTY { get; set; }
/// <summary>
/// 合格品数量
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "合格品数量")]
public decimal? FREPQUAAUX_QTY { get; set; }
/// <summary>
/// 不良品数量
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "不良品数量")]
public decimal? FREPFAILAUX_QTY { get; set; }
/// <summary>
/// 生产状态
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "生产状态", Length = 255)]
public string FSTATUS { get; set; }
/// <summary>
/// 计划开始时间
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "计划开始时间", Length = 255)]
public string FPLAN_START_DATE { get; set; }
/// <summary>
/// 计划完成时间
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "计划完成时间", Length = 255)]
public string FPLAN_FINISH_DATE { get; set; }
/// <summary>
/// 开工时间
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "开工时间", Length = 255)]
public string FSTART_DATE { get; set; }
/// <summary>
/// 完工时间
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "完工时间", Length = 255)]
public string FFINISH_DATE { get; set; }
}
}