31 lines
655 B
C#
31 lines
655 B
C#
|
using Api.Framework.Tools;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Api.Framework.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 淘宝关系类
|
|||
|
/// </summary>
|
|||
|
public class fl_tb_relation : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// cps账号
|
|||
|
/// </summary>
|
|||
|
public string cps_memberid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 特别的id
|
|||
|
/// </summary>
|
|||
|
public long special_id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 用户对应的账号
|
|||
|
/// </summary>
|
|||
|
public string username { get; set; }
|
|||
|
}
|
|||
|
}
|