You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
2.6 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using NPoco;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//subin 2023-07-09 add 分店账号信息表
namespace POSV.Entity
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
[TableName("pos_split_shop_account")]
[PrimaryKey(new string[] { "id" }, AutoIncrement = false)]
public class SplitShopAccount : BaseEntity
{
public SplitShopAccount()
{
}
/// <summary>
/// 租户ID
/// </summary>
[JsonProperty(PropertyName = "tenantId")]
[Column("tenantId")]
public string TenantId { get; set; }
/// <summary>
/// 商户系统用户标识,商户系统中唯一编号。
/// </summary>
[JsonProperty(PropertyName = "bizUserId")]
[Column("bizUserId")]
public string BizUserId { get; set; }
/// <summary>
/// 店铺id
/// </summary>
[JsonProperty(PropertyName = "shopId")]
[Column("shopId")]
public string ShopId { get; set; }
///// <summary>
///// 联系电话
///// </summary>
//[JsonProperty(PropertyName = "phone")]
//[Column("phone")]
//public string Phone { get; set; }
/// <summary>
/// 企业名称
/// </summary>
[JsonProperty(PropertyName = "companyName")]
[Column("companyName")]
public string CompanyName { get; set; }
///// <summary>
///// 企业地址
///// </summary>
//[JsonProperty(PropertyName = "companyAddress")]
//[Column("companyAddress")]
//public string CompanyAddress { get; set; }
///// <summary>
///// 认证类型 1:三证 2:一证, 不填默认1-三证
///// </summary>
//[JsonProperty(PropertyName = "authType")]
//[Column("authType")]
//public string AuthType { get; set; }
///// <summary>
///// 联系电话
///// </summary>
//[JsonProperty(PropertyName = "telphone")]
//[Column("telphone")]
//public string Telphone { get; set; }
///// <summary>
///// 收款方类型 企业2个人3
///// </summary>
//[JsonProperty(PropertyName = "memberType")]
//[Column("memberType")]
//public string MemberType { get; set; }
///// <summary>
///// 访问终端类型 Mobile1PC2
///// </summary>
//[JsonProperty(PropertyName = "source")]
//[Column("source")]
//public string Source { get; set; }
}
}