移动系统liao
2024-11-12 1cb49b04ae6709e6054c328f5ed12bff9ca014c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Linq;
using System.Text;
using SqlSugar;
 
namespace EC_SeckillInfo
{
    ///<summary>
    ///推广系统推广关系
    ///</summary>
    [SugarTable("Promotion_PromotionRelation")]
    public partial class Promotion_PromotionRelation
    {
           public Promotion_PromotionRelation(){
 
 
           }
           /// <summary>
           /// Desc:推广员编号
           /// Default:
           /// Nullable:False
           /// </summary>           
           public Guid PopularizerId {get;set;}
 
           /// <summary>
           /// Desc:受邀人编号
           /// Default:
           /// Nullable:False
           /// </summary>           
           public Guid PyramiderId {get;set;}
 
           /// <summary>
           /// Desc:推广时间
           /// Default:
           /// Nullable:False
           /// </summary>           
           public DateTime PopularizeDate {get;set;}
 
    }
}