21 lines
523 B
C#
21 lines
523 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.DBModels
|
|
{
|
|
/// <summary>
|
|
/// trs做市账户管理明细
|
|
/// </summary>
|
|
[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;}
|
|
}
|
|
}
|