You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
C#
35 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BookingJieFeng.DB.Model
|
|
{
|
|
[Table("t_op_seae_sign_main")]
|
|
public class t_op_seae_sign_main
|
|
{
|
|
[Key]
|
|
public string 签单条编号 { get; set; }
|
|
public string 客户名称 { get; set; }
|
|
public string 客户类型 { get; set; }
|
|
public string 账期 { get; set; }
|
|
public string 录入人 { get; set; }
|
|
public DateTime? 录入日期 { get; set; }
|
|
public string 录入人电话 { get; set; }
|
|
public string 客户签字 { get; set; }
|
|
public string 客户签字图片 { get; set; }
|
|
public DateTime? 客户签字日期 { get; set; }
|
|
public string 财务签字 { get; set; }
|
|
public DateTime? 财务签字日期 { get; set; }
|
|
public string 状态 { get; set; }
|
|
public DateTime? 打印日期 { get; set; }
|
|
public DateTime? 邮件发送日期 { get; set; }
|
|
public DateTime? 通知签出时间 { get; set; }
|
|
public DateTime? 签出时间 { get; set; }
|
|
public DateTime? 作废日期 { get; set; }
|
|
public int? 签单编号 { get; set; }
|
|
public bool? 是否特放 { get; set; }
|
|
}
|
|
} |