| 123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ShwasherSys.ProductInfo.Dto
- {
- public class ReplaceProductDto
- {
- public string ProductNo { get; set; }
- public List<PreReplaceProductDto> PreReplaceProducts { get; set; }
- }
- public class PreReplaceProductDto
- {
- public string ProductType { get; set; }
- public string ReplaceProductNo { get; set; }
- }
- public class ReturnReplaceResultDto
- {
- public string ProductNo { get; set; }
- public string RetCode { get; set; }
- public string ErrorInfo { get; set; }
- public bool IsSuccess { get; set; }
- }
- }
|