22 lines
456 B
C#
22 lines
456 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_dept")]
|
|
public class QiWeiActivityDept
|
|
{
|
|
[Key]
|
|
public int ActId { get; set; }
|
|
|
|
[Key]
|
|
public int DeptId { get; set; }
|
|
|
|
public DateTime? Ctime { get; set; }
|
|
|
|
public QiWeiActivity? QiWeiActivity { get; set; }
|
|
}
|
|
} |