private PostInfo InitialData()
        {
            IDeptManager target = new DeptManager();
            DeptInfo dept = target.Get(new Guid("23efb19f-9f75-42d8-a7ea-673995800330"));

            PostInfo info = new PostInfo();
            info.Dept = dept;
            info.PostNo = "1000";
            info.Name = "营业员";
            info.SortNO = 1;
            return info;
        }