12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using YiSha.Entity;
- namespace YiSha.Model.Param.TK
- {
-
-
-
- public class SavePlateJurisdictionModelsParam : BaseEntity
- {
-
-
-
-
- public int? UserId { get; set; }
-
-
-
-
- public string UserName { get; set; }
-
-
-
- public List<int> GalleryIdList { get; set; }
- }
- }
|