tijian_tieying/web/dccdc.Models/ERPLanEmailModel.cs

21 lines
561 B
C#
Raw Permalink Normal View History

2025-02-20 12:14:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class ERPLanEmailModel
{
public int ID { get; set; }
public string EmailTitle { get; set; }
public DateTime? TimeStr { get; set; }
public string EmailContent { get; set; }
public string FuJian { get; set; }
public string FromUser { get; set; }
public string ToUser { get; set; }
public string EmailState { get; set; }
public string type { get; set; }
}
}