1
2
3
4
5
6
7
8
9
10
11
12
13
14
| namespace Yw.CAL.HttpClient
| {
| /// <summary>
| /// 单位类型
| /// </summary>
| public partial class SysUnitType : BaseCAL_Code_Sorter<AddSysUnitTypeInput, UpdateSysUnitTypeInput, SysUnitTypeDto>, ISysUnitType
| {
| protected override string Prefix
| {
| get { return $"{Yw.BLL.Unit.ConfigHelper.HttpUrl}/Unit/Type"; }
| }
|
| }
| }
|
|