21 lines
		
	
	
		
			445 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			445 B
		
	
	
	
		
			C#
		
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace DM_Weight.Models
 | 
						|
{
 | 
						|
    public class DrugPleaseState
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// 药品请领状态名
 | 
						|
        /// </summary>
 | 
						|
        public string StateName { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        ///  药品请领状态值
 | 
						|
        /// </summary>
 | 
						|
        public int StateValue { get; set; }
 | 
						|
    }
 | 
						|
}
 |