welfareData.ts 271 B

1234567891011
  1. import { _decorator, Component, Node } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('welfareData')
  4. export class welfareData {
  5. public title:string = ""; //标题
  6. public description:string = ""; //描述
  7. public time:string = ""; //时间
  8. }