模具退还

This commit is contained in:
qianjiawei
2023-11-16 17:15:00 +08:00
parent ecfe6fb0b8
commit 5f957eff80
3 changed files with 74 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.EquipMgr.Entities
{
public class ToolMoldReturnListOutput
{
public string? id { get; set; }
public string? code { get; set; }
public string? mold_id { get; set; }
public string? return_id { get; set; }
public string? location_id { get; set; }
public string? location_id_id { get; set; }
public string? return_time { get; set; }
public string? remark { get; set; }
}
}