ningshuxia
2024-04-01 3b153d1d25f3d0531f514e621554811c0ce482db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
namespace Yw.Dto
{
    /// <summary>
    /// 
    /// </summary>
    public class QuerySysUnitNameInput
    {
        /// <summary>
        /// 单位类型
        /// </summary>
        public string UnitType { get; set; }
 
        /// <summary>
        /// 单位值
        /// </summary>
        public string UnitValue { get; set; }
 
        /// <summary>
        /// 单位语言
        /// </summary>
        public string UnitLang { get; set; }
 
 
    }
}