30 lines
950 B
C#
30 lines
950 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.Zxd.QiweiOnlePay
|
|
{
|
|
[Table("qiwei_activity")]
|
|
public class QiWeiActivity
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
public DateTime? StartTime { get; set; }
|
|
public DateTime? EndTime { get; set; }
|
|
public int? Num { get; set; }
|
|
public string? Remark { get; set; }
|
|
public int? Status { get; set; }
|
|
public DateTime? Ctime { get; set; }
|
|
public DateTime? Utime { get; set; }
|
|
public int? Eid { get; set; }
|
|
public string? EName { get; set; }
|
|
public string? CompanyCode { get; set; }
|
|
public int? Order { get; set; }
|
|
public List<QiWeiActivityDept>? QiWeiActivityDept { get; set; }
|
|
public List<QWActivityProduct>? QWActivityProduct { get; set; }
|
|
}
|
|
} |