Commit 933b1b68 by 泽锋 李

fix

parent b264ee88
......@@ -23,6 +23,14 @@ namespace AutoTurnOver.Models
public string error_stack_trace { get; set; }
}
public class dc_task_download_dto : dc_task_download
{
public string status_str { get
{
return ((dc_task_download_status)status).ToString();
} }
}
public enum dc_task_download_status
{
待执行 = 0, 执行中 = 1, 执行完成 = 2, 执行失败 = 3
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment