更改null操作

This commit is contained in:
橙子
2023-01-05 20:32:58 +08:00
parent efbf799218
commit b7c9b84449
25 changed files with 71 additions and 76 deletions

View File

@@ -30,29 +30,29 @@ namespace Yi.Framework.Model.ERP.Entitys
/// <summary>
/// 供应商编码
/// </summary>
public string Code { get; set; }
public string Code { get; set; } = string.Empty;
/// <summary>
/// 供应商名称
/// </summary>
public string Name { get; set; }
public string Name { get; set; }= string.Empty;
/// <summary>
/// 供应商地址
/// </summary>
public string Address { get; set; }
public string? Address { get; set; }
/// <summary>
/// 电话
/// </summary>
public long Phone { get; set; }
public long? Phone { get; set; }
/// <summary>
/// 传真
/// </summary>
public string Fax { get; set; }
public string? Fax { get; set; }
/// <summary>
/// 邮箱
/// </summary>
public string Email { get; set; }
public string? Email { get; set; }
}
}