/***********************************************************************
|
* Project: baifenBinfa
|
* ProjectName: 百分兵法管理系统
|
* Web: http://chuanyin.com
|
* Author:
|
* Email: 34161541@qq.com
|
* CreateTime: 2024-03-01 22:14:58
|
* Description: 暂无
|
***********************************************************************/
|
using SqlSugar;
|
using System.ComponentModel.DataAnnotations;
|
|
namespace CoreCms.Net.Model.Entities
|
{
|
/// <summary>
|
/// 商品图片关联表
|
/// </summary>
|
[SugarTable("CoreCmsBillAftersalesImages",TableDescription = "商品图片关联表")]
|
public partial class CoreCmsBillAftersalesImages
|
{
|
/// <summary>
|
/// 商品图片关联表
|
/// </summary>
|
public CoreCmsBillAftersalesImages()
|
{
|
}
|
|
/// <summary>
|
/// 售后单id
|
/// </summary>
|
[Display(Name = "售后单id")]
|
[SugarColumn(ColumnDescription = "售后单id")]
|
[Required(ErrorMessage = "请输入{0}")]
|
[StringLength(20, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
public System.String aftersalesId { get; set; }
|
/// <summary>
|
/// 图片地址
|
/// </summary>
|
[Display(Name = "图片地址")]
|
[SugarColumn(ColumnDescription = "图片地址")]
|
[Required(ErrorMessage = "请输入{0}")]
|
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
public System.String imageUrl { get; set; }
|
/// <summary>
|
/// 排序
|
/// </summary>
|
[Display(Name = "排序")]
|
[SugarColumn(ColumnDescription = "排序")]
|
[Required(ErrorMessage = "请输入{0}")]
|
public System.Int32 sortId { get; set; }
|
}
|
}
|