2 changed files with 68 additions and 2 deletions
			
			
		- 
					31src/Shentun.Peis.Application.Contracts/Poisons/PoisonWithTypeDto.cs
 - 
					39src/Shentun.Peis.Application/Poisons/PoisonAppService.cs
 
@ -0,0 +1,31 @@ | 
				
			|||
using System; | 
				
			|||
using System.Collections.Generic; | 
				
			|||
using System.Text; | 
				
			|||
 | 
				
			|||
namespace Shentun.Peis.Poisons | 
				
			|||
{ | 
				
			|||
    public class PoisonWithTypeDto | 
				
			|||
    { | 
				
			|||
        public string PoisonTypeName { get; set; } | 
				
			|||
 | 
				
			|||
        public List<PoisonWithTypeSimpePoison> poisonDtos { get; set; } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public class PoisonWithTypeSimpePoison | 
				
			|||
    { | 
				
			|||
 | 
				
			|||
        public Guid Id { get; set; } | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 毒害因素名称
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public string DisplayName { get; set; } | 
				
			|||
 | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 自定义简码
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public string SimpleCode { get; set; } | 
				
			|||
 | 
				
			|||
    } | 
				
			|||
} | 
				
			|||
						Write
						Preview
					
					
					Loading…
					
					Cancel
						Save
					
		Reference in new issue