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.
59 lines
1.5 KiB
59 lines
1.5 KiB
using FactorySystemModel.SqlSugarModel;
|
|
|
|
namespace FactorySystemModel.ResponseModel
|
|
{
|
|
public class TaskRow : TFS_Task
|
|
{
|
|
/// <summary>
|
|
/// Desc:销售号
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string FSaleCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:试验号
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string FTestCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:MDN编码
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string FMdmCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:配方编号
|
|
/// Default:-1
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string FFormulaName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 视图类型
|
|
/// </summary>
|
|
public int? FViewType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:负责人
|
|
/// Default:-1
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string FUserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:半成品号
|
|
/// </summary>
|
|
public string FMaterialHalfIDs { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:是否有FHasBomJson
|
|
/// </summary>
|
|
public int FHasBomJson { get; set; }
|
|
|
|
public string FBomJson { get; set; }
|
|
}
|
|
} |