AdsDimFinancialYearWeekInfo.java 2.5 KB
Newer Older
Q
qinyingjie 已提交
1 2 3 4 5
package com.kwan.springbootkwan.entity;


import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
Q
qinyingjie 已提交
6
import com.fasterxml.jackson.annotation.JsonFormat;
Q
qinyingjie 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19
import io.swagger.annotations.ApiModel;

import java.util.Date;


@TableName(value = "ads_dim_financial_year_week_info")
@ApiModel(value = "财年周")
public class AdsDimFinancialYearWeekInfo extends Model<AdsDimFinancialYearWeekInfo> {
    //财年
    private Integer financialYear;
    //第n财年周
    private Integer financialYearWeek;
    //财年开始日期
Q
qinyingjie 已提交
20
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
Q
qinyingjie 已提交
21 22
    private Date financialYearStart;
    //财年结束日期
Q
qinyingjie 已提交
23
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
Q
qinyingjie 已提交
24 25
    private Date financialYearEnd;
    //周开始
Q
qinyingjie 已提交
26
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
Q
qinyingjie 已提交
27 28
    private Date weekStartDay;
    //周结束
Q
qinyingjie 已提交
29
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
Q
qinyingjie 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
    private Date weekEndDay;
    //财年周所在季节区间,0:跨9月1号,1:3月到8月,2:9月到2月
    private Integer weekInSeason;


    public Integer getFinancialYear() {
        return financialYear;
    }

    public void setFinancialYear(Integer financialYear) {
        this.financialYear = financialYear;
    }

    public Integer getFinancialYearWeek() {
        return financialYearWeek;
    }

    public void setFinancialYearWeek(Integer financialYearWeek) {
        this.financialYearWeek = financialYearWeek;
    }

    public Date getFinancialYearStart() {
        return financialYearStart;
    }

    public void setFinancialYearStart(Date financialYearStart) {
        this.financialYearStart = financialYearStart;
    }

    public Date getFinancialYearEnd() {
        return financialYearEnd;
    }

    public void setFinancialYearEnd(Date financialYearEnd) {
        this.financialYearEnd = financialYearEnd;
    }

    public Date getWeekStartDay() {
        return weekStartDay;
    }

    public void setWeekStartDay(Date weekStartDay) {
        this.weekStartDay = weekStartDay;
    }

    public Date getWeekEndDay() {
        return weekEndDay;
    }

    public void setWeekEndDay(Date weekEndDay) {
        this.weekEndDay = weekEndDay;
    }

    public Integer getWeekInSeason() {
        return weekInSeason;
    }

    public void setWeekInSeason(Integer weekInSeason) {
        this.weekInSeason = weekInSeason;
    }

}