using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.DBModels { /// /// trs做市账户管理明细 /// [Table("trs_account_manage_detail")] public class TrsAccountManageDetail: DBModelWithOperator { public int account_id { get; set; } public int? client_id { get; set; } public string client_name { get; set;} } }