using Prism.Mvvm; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DM_Weight.Models { public class OrderDepartment : BindableBase { //科室 public string _deptName="全部"; public string DeptName { get=>_deptName; set { SetProperty(ref _deptName, value); } } } }