Files
zszq-trs/Framework/YLErp.Core/DBModels/TrsAccountManageDetail.cs
T
2024-05-09 14:06:26 +08:00

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;}
}
}