1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.ComponentModel.DataAnnotations;
- using Model.Base;
- namespace Dto
- {
-
-
-
- public class SysDictItemAddDto
- {
-
-
-
- public long dictId { get; set; }
-
-
-
- public string? itemValue { get; set; }
-
-
-
- public string? label { get; set; }
-
-
-
- public string? dictType { get; set; }
-
-
-
- public string? description { get; set; }
-
-
-
- public int sortOrder { get; set; }
-
-
-
- public string? remarks { get; set; }
- }
- }
|