You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
2.4 KiB
104 lines
2.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Container.Model
|
|
{
|
|
public class InsertADModel
|
|
{
|
|
|
|
public string FilePath { set; get; } //文件地址
|
|
public int Duration { set; get; } //时长
|
|
}
|
|
|
|
public class Live
|
|
{
|
|
public string LiveUrl { get; set; }
|
|
|
|
public string HFilePath { get; set; }
|
|
|
|
public List<string> VFilePath { get; set; }
|
|
|
|
public string MallCode { get; set; }
|
|
|
|
public string MallName { get; set; }
|
|
|
|
public string OldLiveCode { get; set; }
|
|
public string LiveCode { get; set; }
|
|
|
|
public string SenderID { get; set; }
|
|
public int Likes { get; set; }
|
|
|
|
public int WatchNum { get; set; }
|
|
|
|
public CouponInfo CouponInfo { get; set; }
|
|
|
|
public string FloorName { get; set; }
|
|
|
|
public string HouseNum { get; set; }
|
|
|
|
public string LogoPath { get; set; }
|
|
|
|
public string QRCode { get; set; }
|
|
|
|
public string ShopName { get; set; }
|
|
}
|
|
|
|
|
|
public class CouponInfo {
|
|
|
|
public int ID { get; set; }
|
|
public string Code { get; set; }
|
|
public string ShopCode { get; set; }
|
|
public string Title { get; set; }
|
|
public string Intro { get; set; }
|
|
public int PublishState { get; set; }
|
|
public int TotalNum { get; set; }
|
|
public int Received { get; set; }
|
|
|
|
public string QrCode { get; set; }
|
|
}
|
|
|
|
public class CurrentLive
|
|
{
|
|
public string floorName { get; set; }
|
|
|
|
public string hFilePath { get; set; }
|
|
|
|
public string houseNum { get; set; }
|
|
|
|
public int likes { get; set; }
|
|
|
|
public string liveurl { get; set; }
|
|
public string logoPath { get; set; }
|
|
|
|
public string mallName { get; set; }
|
|
public string qrCode { get; set; }
|
|
public string shopName { get; set; }
|
|
public List<string> vFilePath { get; set; }
|
|
public int watchNum { get; set; }
|
|
|
|
public CouponInfo CouponInfo { get; set; }
|
|
}
|
|
|
|
public class PlayProg {
|
|
|
|
public string OrderNo { get; set; }
|
|
|
|
public string Code { get; set; }
|
|
|
|
public string FilePath { get; set; }
|
|
|
|
public int OrderType { get; set; }
|
|
}
|
|
|
|
public class ShutDownProg
|
|
{
|
|
|
|
public string OrderNo { get; set; }
|
|
|
|
public string Code { get; set; }
|
|
}
|
|
}
|
|
|