Changes between Version 18 and Version 19 of app2.0/object_properties


Ignore:
Timestamp:
02/10/2015 10:21:12 AM (11 years ago)
Author:
pengzhanxuan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • app2.0/object_properties

    v18 v19  
    237237{{{#!java 
    238238gift: { 
    239     id: 1 
     239    giftId: 1 
     240    subGiftDesc: "好礼物",  // 个人中心相关礼品介绍截取100字符字段 
     241    giftStock: $giftStock, 
     242    giftExchangeRule: $giftExchangeRule, 
     243    name: "京东卡", 
    240244    mallName: '京东',  // 电商名称 
    241     mallId: 12, 
    242     squareImg: "http://img.pconline.com.cn/2.png",  // 正方形图片 
    243     rectangleImg: "http://img.pconline.com.cn/1.png",  // 2:1长方形图片 
    244     name: '京东优惠券',  // 标题 
    245     expiryDate: '2015-02-28 10:10:00', 
    246     mallUrl: "http://www.abc.com",  // 优惠券电商链接 
    247     giftExchangeRule: $giftExchangeRule, 
    248      
     245    type: 1,  // 礼品类型: 1 礼品卡  2 实物礼品 3 优惠券 
     246    image: "http://a.cn/1.png",  // 图片 
     247    orderNum: 1,  // 排序 
     248    giftPrice: 12.00,  // 礼品价格 
     249    createTime: 13251245124000,  // 创建时间 
     250    disCount: "满400减20",  // 优惠券额度 
     251    expiryDate: 13621321521000,  // 有效期 
     252    mallId:  12,  // 电商Id 
     253    remainingDay:2  // 当前时间距离优惠券过期的天数 
    249254} 
    250255}}} 
     
    255260giftCoupon: { 
    256261    gift: $gift, 
     262    couponId: 123,  // 优惠券Id 
     263    giftId: 123,  // 礼品Id 
    257264    cardNum: '1232', 
    258     cardPassword: 's123sdssdfs54212' 
     265    cardPassword: 's123sdssdfs54212', 
     266    status: 1,  // 状态0:禁用;1:未领取;2:已领取 
     267    createAt: 1352125412000,  // 创建时间 
     268    createrId: 132,  // 创建人id 
     269    updateAt: 13215478541000,  // 更新时间 
     270    updaterId:  132, 
     271    updateName: "Jason",  // 更新人 
     272    createName: "Jason",  // 创建人 
     273    useDate: 13212457451000,  // 被领取时间 
    259274} 
    260275}}} 
     
    269284    needGold: 2, 
    270285    limitTimes: 10 
     286} 
     287}}} 
     288 
     289== 礼物描述 == 
     290{{{#!java 
     291giftDesc:{ 
     292    giftId: 123, 
     293    giftDesc:"好礼物",  // 礼物描述 
     294    subGiftDesc: "好礼物"  // 个人中心相关礼品介绍截取100字符字段 
     295} 
     296 
     297}}} 
     298 
     299== 礼品库存 == 
     300{{{#!java 
     301giftStock:{ 
     302    giftId: 123,   
     303    stockNum: 12,  // 剩余库存 
     304    totalStockNum: 20,   // 总库存 
     305    createTime: 13215467895000,  // 创建时间 
     306    changeNum: 1  // 已领取数量 
    271307} 
    272308}}}