using System.ComponentModel.DataAnnotations.Schema;
namespace YLErp.Core.DBModels
{
[Table("supervise_undelrying")]
public class supervise_undelrying
{
public int id { get; set; }
///
/// 标的代码
///
public string undelrying { get; set; }
///
/// 报送标的代码
///
public string undelrying_CFMMC { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
}
}