15 lines
383 B
C#
15 lines
383 B
C#
namespace Tnb.EquipMgr.Entities.Dto
|
|
{
|
|
public class SpotInsRecordExecuteInput
|
|
{
|
|
public string? id { get; set; }
|
|
|
|
public string? attachment { get; set; }
|
|
|
|
public string? result { get; set; }
|
|
|
|
public string? result_remark { get; set; }
|
|
|
|
public List<Dictionary<string,string>>? details { get; set; }
|
|
}
|
|
} |