135 lines
2.7 KiB
C#
135 lines
2.7 KiB
C#
/*
|
|
###CSharp Code Generate###
|
|
CJLR_TASK_RELEASE_DETAIL
|
|
Create by User(EMAIL) 2025/8/4 13:34:37
|
|
|
|
CJLR_TASK_RELEASE_DETAIL
|
|
----------------------------
|
|
id PKInteger(10) //<<类名:int,自增长>>
|
|
modelsName String(50) //<<类名:nvarchar>>
|
|
modelsCode String(50) //<<类名:nvarchar>>
|
|
position String(50) //<<类名:nvarchar>>
|
|
sourceFile String(255) //<<类名:nvarchar>>
|
|
targetFile String(255) //<<类名:nvarchar>>
|
|
taskFileName String(50) //<<类名:nvarchar>>
|
|
taskStatus Integer(10) //<<类名:int>>
|
|
taskDetail String(200) //<<类名:nvarchar>>
|
|
createDate Date //<<类名:datetime>>
|
|
|
|
*/
|
|
|
|
using System;
|
|
|
|
namespace NSAnalysis
|
|
{
|
|
public class CjlrTaskReleaseDetailModel
|
|
{
|
|
protected int id;
|
|
protected string modelsName;
|
|
protected string modelsCode;
|
|
protected string position;
|
|
protected string sourceFile;
|
|
protected string targetFile;
|
|
protected string taskFileName;
|
|
protected int taskStatus;
|
|
protected string taskDetail;
|
|
protected DateTime createDate;
|
|
|
|
public CjlrTaskReleaseDetailModel()
|
|
{
|
|
}
|
|
|
|
public int Id
|
|
{
|
|
get { return id; }
|
|
set { id = value; }
|
|
}
|
|
|
|
public string ModelsName
|
|
{
|
|
get { return modelsName; }
|
|
set { modelsName = value; }
|
|
}
|
|
|
|
public string ModelsCode
|
|
{
|
|
get { return modelsCode; }
|
|
set { modelsCode = value; }
|
|
}
|
|
|
|
public string Position
|
|
{
|
|
get { return position; }
|
|
set { position = value; }
|
|
}
|
|
|
|
public string SourceFile
|
|
{
|
|
get { return sourceFile; }
|
|
set { sourceFile = value; }
|
|
}
|
|
|
|
public string TargetFile
|
|
{
|
|
get { return targetFile; }
|
|
set { targetFile = value; }
|
|
}
|
|
|
|
public string TaskFileName
|
|
{
|
|
get { return taskFileName; }
|
|
set { taskFileName = value; }
|
|
}
|
|
|
|
public int TaskStatus
|
|
{
|
|
get { return taskStatus; }
|
|
set { taskStatus = value; }
|
|
}
|
|
|
|
public string TaskDetail
|
|
{
|
|
get { return taskDetail; }
|
|
set { taskDetail = value; }
|
|
}
|
|
|
|
public DateTime CreateDate
|
|
{
|
|
get { return createDate; }
|
|
set { createDate = value; }
|
|
}
|
|
|
|
public void Reset()
|
|
{
|
|
id = 0;
|
|
modelsName = null;
|
|
modelsCode = null;
|
|
position = null;
|
|
sourceFile = null;
|
|
targetFile = null;
|
|
taskFileName = null;
|
|
taskStatus = 0;
|
|
taskDetail = null;
|
|
createDate = DateTime.Parse("2023-01-01 00:00:00");
|
|
}
|
|
|
|
public void AssignFrom(CjlrTaskReleaseDetailModel AObj)
|
|
{
|
|
if (AObj == null)
|
|
{
|
|
Reset();
|
|
return;
|
|
}
|
|
id = AObj.id;
|
|
modelsName = AObj.modelsName;
|
|
modelsCode = AObj.modelsCode;
|
|
position = AObj.position;
|
|
sourceFile = AObj.sourceFile;
|
|
targetFile = AObj.targetFile;
|
|
taskFileName = AObj.taskFileName;
|
|
taskStatus = AObj.taskStatus;
|
|
taskDetail = AObj.taskDetail;
|
|
createDate = AObj.createDate;
|
|
}
|
|
}
|
|
} |