24 lines
658 B
C#
24 lines
658 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CRM.Core.Model.EntitySoft
|
|
{
|
|
[Table("wx_canopengiforder")]
|
|
public class Wx_CanOpenGifOrder
|
|
{
|
|
[Key]
|
|
public string code { get; set; }
|
|
public string username { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
public int status { get; set; }
|
|
public DateTime? usetime { get; set; }
|
|
public string remark { get; set; }
|
|
public string createor { get; set; }
|
|
}
|
|
}
|