using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.ViewModel { public class TispSpotUserCreateViewModel : BaseViewModel { /// /// 巡检点列表 /// public List spotIdList { get; set; } /// /// 用户列表 /// public List userIdList { get; set; } /// /// 备注 /// public string C_Remark { get; set; } } }