using System; namespace Model { /// /// 携号转网类 /// public class GwTransfer { private int _id; private string _mobile; private string _operator; public int Id { get { return this._id; } set { this._id = value; } } public string Mobile { get { return this._mobile; } set { this._mobile = value; } } public string Operator { get { return this._operator; } set { this._operator = value; } } } }